diff options
Diffstat (limited to '')
-rw-r--r-- | map_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/map_test.go b/map_test.go index 0a758d0..328e03f 100644 --- a/map_test.go +++ b/map_test.go @@ -6,10 +6,10 @@ import ( "github.com/stretchr/testify/assert" ) -func setupTestStore(t testing.TB) *Store { +func setupTestStore(t testing.TB) *store { t.Helper() - store := &Store{} + store := &store{} store.Init() return store } |