[ticket/12574] Use correct config entry for connecting to ldap

PHPBB3-12574
This commit is contained in:
Marc Alexander 2019-11-01 12:40:52 +01:00
parent 9aee50968e
commit c75502e09c
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -31,7 +31,7 @@ class phpbb_auth_provider_ldap_test extends phpbb_database_test_case
$config = new \phpbb\config\config([ $config = new \phpbb\config\config([
'ldap_server' => 'localhost', 'ldap_server' => 'localhost',
'ldap_port' => 3389, 'ldap_port' => 3389,
'ldap_dn' => 'dc=example,dc=com', 'ldap_base_dn' => 'dc=example,dc=com',
'ldap_uid' => 'uid', 'ldap_uid' => 'uid',
'ldap_email' => 'mail', 'ldap_email' => 'mail',
]); ]);