aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-10-13 13:06:11 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-10-13 13:06:11 +0200
commit5cfc3f44d3aa5a30a6d590913a4e1eff10db0d77 (patch)
treebe9b4435e1514ed8843722e6ef04607a2307b632
parent72c353d58fa33d11d58eb9276d2095e538ecebb8 (diff)
Consistent names
-rw-r--r--ops_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/ops_test.go b/ops_test.go
index fd0cadb..d8c4787 100644
--- a/ops_test.go
+++ b/ops_test.go
@@ -26,13 +26,13 @@ func BenchmarkSub(b *testing.B) {
}
}
-func TestTimes(t *testing.T) {
+func TestMul(t *testing.T) {
if _, ok := verify("*"); !ok {
- t.Error("times failed")
+ t.Error("mul failed")
}
}
-func BenchmarkTimes(b *testing.B) {
+func BenchmarkMul(b *testing.B) {
for i := 0; i < b.N; i++ {
verify("*")
}