linting typos

linting typos fixed
This commit is contained in:
CoryGH 2021-05-20 12:27:10 -04:00 committed by GitHub
parent 8a791d4bf0
commit 91cac2fdaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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)
}