Skip to content

Commit 7f612e6

Browse files
committed
Correct LDAPAuthenticator construction
1 parent 8c80ff1 commit 7f612e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tiled/_tests/test_authenticators.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ def test_LDAPAuthenticator_01(use_tls, use_ssl, ldap_server_address, ldap_server
3535
if not TILED_TEST_LDAP:
3636
pytest.skip("Run an LDAP container and set TILED_TEST_LDAP to run")
3737
authenticator = LDAPAuthenticator(
38-
ldap_server_address,
39-
ldap_server_port,
38+
server_address=ldap_server_address,
39+
server_port=ldap_server_port,
4040
bind_dn_template="cn={username},ou=users,dc=example,dc=org",
4141
use_tls=use_tls,
4242
use_ssl=use_ssl,

0 commit comments

Comments
 (0)