From 0e05d2d54e9a5a7aaa8d0c1d6e16f51b6944d05a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Wed, 16 Apr 2025 20:47:28 +0200 Subject: [PATCH] fix: typo in tests name --- redis/redis_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redis/redis_test.go b/redis/redis_test.go index 15481dbb..b58965c5 100644 --- a/redis/redis_test.go +++ b/redis/redis_test.go @@ -401,7 +401,7 @@ func Test_Redis_Conn(t *testing.T) { require.True(t, testStore.Conn() != nil) } -func Test_Redis_Initalize_WithHostPort(t *testing.T) { +func Test_Redis_Initialize_WithHostPort(t *testing.T) { var ( key = "clark" val = []byte("kent") @@ -421,7 +421,7 @@ func Test_Redis_Initalize_WithHostPort(t *testing.T) { require.NoError(t, err) } -func Test_Redis_Initalize_WithURL_TLS_Verify(t *testing.T) { +func Test_Redis_Initialize_WithURL_TLS_Verify(t *testing.T) { testFn := func(secureURL bool, mtlsDisabled bool) { testStore := newTestStore(t, withTLS(secureURL, mtlsDisabled)) defer testStore.Close()