fix(tests): fix filter test

This commit is contained in:
Łukasz Mierzwa
2020-11-26 18:18:50 +00:00
committed by Łukasz Mierzwa
parent 8ee85639d3
commit 49cb8c9192
+1 -1
View File
@@ -22,7 +22,7 @@ func TestEqualMatcher(t *testing.T) {
{"1", 1, true, false},
{"a", "ab", true, false},
{12, 13, true, false},
{time.Now(), time.Now(), true, false},
{&matchTest{}, &matchTest{}, true, false},
}
for _, mt := range tests {
m := equalMatcher{}