aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/external-plugins/auth-ldap.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-12-09 11:14:47 +0100
committerChocobozzz <me@florianbigard.com>2022-12-12 13:36:23 +0100
commit2732eeff9e6994582293b5aaa0cb158b7e272e9e (patch)
tree417d30cf470cd1db84e06c5dbd1b5429d4b99bc1 /server/tests/external-plugins/auth-ldap.ts
parentc7c5f8d0f17b0ab598fbe237f11639c6de28110c (diff)
downloadPeerTube-2732eeff9e6994582293b5aaa0cb158b7e272e9e.tar.gz
PeerTube-2732eeff9e6994582293b5aaa0cb158b7e272e9e.tar.zst
PeerTube-2732eeff9e6994582293b5aaa0cb158b7e272e9e.zip
Fix CI using 127.0.0.1 for tests
Diffstat (limited to 'server/tests/external-plugins/auth-ldap.ts')
-rw-r--r--server/tests/external-plugins/auth-ldap.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/external-plugins/auth-ldap.ts b/server/tests/external-plugins/auth-ldap.ts
index 6f6a574a0..d51d337be 100644
--- a/server/tests/external-plugins/auth-ldap.ts
+++ b/server/tests/external-plugins/auth-ldap.ts
@@ -32,7 +32,7 @@ describe('Official plugin auth-ldap', function () {
32 'mail-property': 'mail', 32 'mail-property': 'mail',
33 'search-base': 'ou=people,dc=planetexpress,dc=com', 33 'search-base': 'ou=people,dc=planetexpress,dc=com',
34 'search-filter': '(|(mail={{username}})(uid={{username}}))', 34 'search-filter': '(|(mail={{username}})(uid={{username}}))',
35 'url': 'ldap://localhost:390', 35 'url': 'ldap://127.0.0.1:390',
36 'username-property': 'uid' 36 'username-property': 'uid'
37 } 37 }
38 }) 38 })
@@ -50,7 +50,7 @@ describe('Official plugin auth-ldap', function () {
50 'mail-property': 'mail', 50 'mail-property': 'mail',
51 'search-base': 'ou=people,dc=planetexpress,dc=com', 51 'search-base': 'ou=people,dc=planetexpress,dc=com',
52 'search-filter': '(|(mail={{username}})(uid={{username}}))', 52 'search-filter': '(|(mail={{username}})(uid={{username}}))',
53 'url': 'ldap://localhost:10389', 53 'url': 'ldap://127.0.0.1:10389',
54 'username-property': 'uid' 54 'username-property': 'uid'
55 } 55 }
56 }) 56 })