aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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("*")
}