aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2017-01-28 22:33:00 +0100
committerDimitri Sokolyuk <demon@dim13.org>2017-01-28 22:33:00 +0100
commita3b9d3fc1ffff1c342f73a52db5c5a2c951ba8fd (patch)
tree65145b15e3969c8cd7a1f1b2a3714c482b763cf2
parent7d96315b115e965cbb57c7b515fd2985888f7646 (diff)
Some renames
-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("^")
}