From a5194b3be4768d42b27ef9e2d0d52479e0436758 Mon Sep 17 00:00:00 2001 From: Marc Pervaz Boocha Date: Tue, 25 Feb 2025 09:47:02 +0530 Subject: Removed testify and improved tests --- examples/eviction_policy/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/eviction_policy') diff --git a/examples/eviction_policy/main.go b/examples/eviction_policy/main.go index a9c8577..5b5599a 100644 --- a/examples/eviction_policy/main.go +++ b/examples/eviction_policy/main.go @@ -3,12 +3,12 @@ package main import ( "fmt" - "code.qburst.com/marcpervaz//cache" + "github.com/marcthe12/cache" ) func main() { // Create an in-memory cache with LRU eviction policy - db, err := cache.OpenMem[string, string]("example", cache.WithPolicy(cache.PolicyLRU)) + db, err := cache.OpenMem[string, string](cache.WithPolicy(cache.PolicyLRU)) if err != nil { fmt.Println("Error:", err) return -- cgit v1.2.3-70-g09d2