From 91cac2fdaa4def44622af4a69cf8ca0190b9bb6f Mon Sep 17 00:00:00 2001 From: CoryGH Date: Thu, 20 May 2021 12:27:10 -0400 Subject: [PATCH] linting typos linting typos fixed --- test/server.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/server.test.js b/test/server.test.js index b868c30..459cfa3 100644 --- a/test/server.test.js +++ b/test/server.test.js @@ -334,7 +334,7 @@ tap.test('close passes error to callback', function (t) { }) tap.test('multithreading support via external server', function (t) { - let serverOptions = { } + const serverOptions = { } const server = ldap.createServer(serverOptions) const fauxServer = net.createServer(serverOptions, (connection) => { server.newConnection(connection) @@ -358,7 +358,7 @@ tap.test('multithreading support via external server', function (t) { }) tap.test('multithreading support via hook', function (t) { - let serverOptions = { + const serverOptions = { connectionRouter: (connection) => { server.newConnection(connection) }