Skip to content

Commit

Permalink
ldap tests: fix deprecated call to sets
Browse files Browse the repository at this point in the history
  • Loading branch information
vrutkovs committed Apr 15, 2024
1 parent b159936 commit aac8ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/extended/util/ldap.go
Expand Up @@ -80,7 +80,7 @@ func CreateLDAPTestServer(oc *CLI) (svcNs, svcName, svcHostname string, caPem []
svcNs = oc.Namespace()
svcName = ldapService.Name
svcHostname = svcName + "." + svcNs + ".svc"
serverCertConfig, err := ca.MakeServerCert(sets.NewString("localhost", "127.0.0.1", svcHostname), 100)
serverCertConfig, err := ca.MakeServerCert(sets.New("localhost", "127.0.0.1", svcHostname), 100)
if err != nil {
return "", "", "", nil, err
}
Expand Down

0 comments on commit aac8ae9

Please sign in to comment.