fix: typo in tests name

This commit is contained in:
Manuel de la Peña
2025-04-16 20:47:28 +02:00
parent 320a250502
commit 0e05d2d54e

View File

@@ -401,7 +401,7 @@ func Test_Redis_Conn(t *testing.T) {
require.True(t, testStore.Conn() != nil) require.True(t, testStore.Conn() != nil)
} }
func Test_Redis_Initalize_WithHostPort(t *testing.T) { func Test_Redis_Initialize_WithHostPort(t *testing.T) {
var ( var (
key = "clark" key = "clark"
val = []byte("kent") val = []byte("kent")
@@ -421,7 +421,7 @@ func Test_Redis_Initalize_WithHostPort(t *testing.T) {
require.NoError(t, err) 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) { testFn := func(secureURL bool, mtlsDisabled bool) {
testStore := newTestStore(t, withTLS(secureURL, mtlsDisabled)) testStore := newTestStore(t, withTLS(secureURL, mtlsDisabled))
defer testStore.Close() defer testStore.Close()