Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 0eca4b6

Browse files
authored
Merge pull request #530 from ldapjs/fix-priv
Fix privileged port access in tests
2 parents e4264f7 + a4b8b11 commit 0eca4b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/server.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ test('non-strict routing', function (t) {
322322
test('close without error calls callback', function (t) {
323323
server = ldap.createServer();
324324
// when the server is closed without error, the callback parameter is undefined
325-
server.listen(389,'127.0.0.1',function(err){
325+
server.listen(1389,'127.0.0.1',function(err){
326326
server.close(function(err){
327327
t.error(err);
328328
t.end();

0 commit comments

Comments
 (0)