aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-11-01 12:40:52 +0100
committerMarc Alexander <admin@m-a-styles.de>2019-11-16 16:02:43 +0100
commitc75502e09c9b997779a109b132298dd16b16e6d9 (patch)
tree8367bc52fbfa90bd6947df43053fecbf1b60aac5 /tests
parent[ticket/12574] Don't add extension to php config & set default username (diff)
downloadphpbb-c75502e09c9b997779a109b132298dd16b16e6d9.tar.gz
phpbb-c75502e09c9b997779a109b132298dd16b16e6d9.tar.bz2
phpbb-c75502e09c9b997779a109b132298dd16b16e6d9.zip
[ticket/12574] Use correct config entry for connecting to ldap
PHPBB3-12574
Diffstat (limited to 'tests')
-rw-r--r--tests/auth/provider_ldap_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auth/provider_ldap_test.php b/tests/auth/provider_ldap_test.php
index 211966875e..5482f964bf 100644
--- a/tests/auth/provider_ldap_test.php
+++ b/tests/auth/provider_ldap_test.php
@@ -31,7 +31,7 @@ class phpbb_auth_provider_ldap_test extends phpbb_database_test_case
$config = new \phpbb\config\config([
'ldap_server' => 'localhost',
'ldap_port' => 3389,
- 'ldap_dn' => 'dc=example,dc=com',
+ 'ldap_base_dn' => 'dc=example,dc=com',
'ldap_uid' => 'uid',
'ldap_email' => 'mail',
]);