From c14fd6c43f6c90e7aca296b083423004000297a5 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Tue, 30 Jul 2019 15:38:52 +0300 Subject: [PATCH] lib/storage: typo fixes after a77e88db7db6f94cbb9cf9a1d14173dfae1fa388 --- lib/storage/index_db_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/storage/index_db_test.go b/lib/storage/index_db_test.go index 3292ed932b..a859988058 100644 --- a/lib/storage/index_db_test.go +++ b/lib/storage/index_db_test.go @@ -767,7 +767,7 @@ func TestMatchTagFilters(t *testing.T) { if !ok { t.Fatalf("Should match") } - tfs.Reset(mn.AccountID, mn.ProjectID) + tfs.Reset() if err := tfs.Add([]byte("non-existing-tag"), []byte(".+"), true, true); err != nil { t.Fatalf("cannot add regexp, negative filter: %s", err) } @@ -870,7 +870,7 @@ func TestMatchTagFilters(t *testing.T) { if !ok { t.Fatalf("Should match") } - tfs.Reset(mn.AccountID, mn.ProjectID) + tfs.Reset() if err := tfs.Add([]byte("key 3"), []byte(""), true, false); err != nil { t.Fatalf("cannot add regexp, negative filter: %s", err) }