From 3222d377756fc0940b549f57a038bc9ba2716628 Mon Sep 17 00:00:00 2001 From: gobwas Date: Tue, 2 Feb 2016 22:05:56 +0300 Subject: [PATCH] fix --- match/nothing_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/match/nothing_test.go b/match/nothing_test.go index 1b96c58..ba31036 100644 --- a/match/nothing_test.go +++ b/match/nothing_test.go @@ -34,7 +34,7 @@ func TestNothingIndex(t *testing.T) { } func BenchmarkIndexNothing(b *testing.B) { - m := Max{10} + m := Nothing{} for i := 0; i < b.N; i++ { m.Index(bench_pattern) }