summaryrefslogtreecommitdiff
path: root/internal/configuration/validator/authentication_test.go
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2024-09-20 11:11:53 +1000
committerGitHub <noreply@github.com>2024-09-20 11:11:53 +1000
commitc0d4dd9c9499b7e9b0f83c47396aa6a7da3424db (patch)
tree2d5ca23021aacac96d656b680eb57cab00b1617e /internal/configuration/validator/authentication_test.go
parent346acdcf43f715473874c7033421df04f7232e63 (diff)
refactor: linting (#7863)
Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/configuration/validator/authentication_test.go')
-rw-r--r--internal/configuration/validator/authentication_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/configuration/validator/authentication_test.go b/internal/configuration/validator/authentication_test.go
index 98dcf13e7..1248de0cd 100644
--- a/internal/configuration/validator/authentication_test.go
+++ b/internal/configuration/validator/authentication_test.go
@@ -884,7 +884,7 @@ func (suite *LDAPAuthenticationBackendSuite) TestShouldSetDefaultTLSMinimumVersi
func (suite *LDAPAuthenticationBackendSuite) TestShouldNotAllowSSL30() {
suite.config.LDAP.TLS = &schema.TLS{
- MinimumVersion: schema.TLSVersion{Value: tls.VersionSSL30},
+ MinimumVersion: schema.TLSVersion{Value: tls.VersionSSL30}, //nolint:staticcheck
}
ValidateAuthenticationBackend(&suite.config, suite.validator)