From 0bf47f3c81001be1c940558e22cff9059c7ddd1f Mon Sep 17 00:00:00 2001 From: darkweak Date: Tue, 24 Dec 2024 14:34:04 +0100 Subject: [PATCH] fix(ci): go-redis unit tests --- go-redis/go-redis_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go-redis/go-redis_test.go b/go-redis/go-redis_test.go index f6c599d..3e3f47e 100644 --- a/go-redis/go-redis_test.go +++ b/go-redis/go-redis_test.go @@ -22,7 +22,7 @@ func getRedisInstance() (core.Storer, error) { func getRedisConfigurationInstance() (core.Storer, error) { return redis.Factory(core.CacheProvider{Configuration: map[string]interface{}{ - "Addrs": "localhost:6379", + "Addrs": []string{"localhost:6379"}, }}, zap.NewNop().Sugar(), 0) }