From 2231b313bdc8ee67ceb2ded235ad10c6c4755800 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Wed, 16 Apr 2025 20:46:38 +0200 Subject: [PATCH] chore: rename variable --- redis/redis_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/redis/redis_test.go b/redis/redis_test.go index b2d9e1ec..092a05c1 100644 --- a/redis/redis_test.go +++ b/redis/redis_test.go @@ -33,7 +33,7 @@ type testStoreSettings struct { // TLS settings withSecureURL bool - withMTLSdisabled bool + withMTLSDisabled bool withTLS bool } @@ -55,7 +55,7 @@ func withTLS(secureURL bool, mtlsDisabled bool) testStoreOption { return func(o *testStoreSettings) { o.withTLS = true o.withSecureURL = secureURL - o.withMTLSdisabled = mtlsDisabled + o.withMTLSDisabled = mtlsDisabled } } @@ -159,7 +159,7 @@ func newTestStore(t testing.TB, opts ...testStoreOption) *Storage { "--tls-auth-clients", "yes", } - if settings.withMTLSdisabled { + if settings.withMTLSDisabled { cmds = append(cmds, "--tls-auth-clients", "no") }