diff options
author | Marc Pervaz Boocha <marcpervaz@qburst.com> | 2025-02-19 18:28:03 +0530 |
---|---|---|
committer | Marc Pervaz Boocha <marcpervaz@qburst.com> | 2025-02-19 18:28:03 +0530 |
commit | 893b439ccb9511ed4a5595bdf8048bb637da1200 (patch) | |
tree | 5885be596e283a719166ba6af9339c3095bc471d /map_test.go | |
parent | Bootstraped code for housekeeping operations (diff) | |
download | cache-893b439ccb9511ed4a5595bdf8048bb637da1200.tar cache-893b439ccb9511ed4a5595bdf8048bb637da1200.tar.gz cache-893b439ccb9511ed4a5595bdf8048bb637da1200.tar.bz2 cache-893b439ccb9511ed4a5595bdf8048bb637da1200.tar.lz cache-893b439ccb9511ed4a5595bdf8048bb637da1200.tar.xz cache-893b439ccb9511ed4a5595bdf8048bb637da1200.tar.zst cache-893b439ccb9511ed4a5595bdf8048bb637da1200.zip |
Added Eviction and Options setup
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 } |