aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ops_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ops_test.go b/ops_test.go
index d8c4787..c89c461 100644
--- a/ops_test.go
+++ b/ops_test.go
@@ -38,13 +38,13 @@ func BenchmarkMul(b *testing.B) {
}
}
-func TestPot(t *testing.T) {
+func TestPow(t *testing.T) {
if _, ok := verify("^"); !ok {
t.Error("pot failed")
}
}
-func BenchmarkPot(b *testing.B) {
+func BenchmarkPow(b *testing.B) {
for i := 0; i < b.N; i++ {
verify("^")
}