Change test ip address.

Co-authored-by: Tony Brix <tony@brix.ninja>
This commit is contained in:
Martin Cizek 2020-09-18 07:48:12 +02:00 committed by GitHub
parent f3804bbca6
commit 85824f8980
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -382,8 +382,8 @@ tap.test('createClient', t => {
getPort().then(function (unusedPortNumber) {
const client = ldap.createClient({
url: [
`ldap://0.0.0.0:${unusedPortNumber}`,
`ldap://0.0.0.1:${unusedPortNumber}`
`ldap://127.0.0.1:${unusedPortNumber}`,
`ldap://127.0.0.2:${unusedPortNumber}`
],
connectTimeout: 1
})