Skip to content

Commit 635ea36

Browse files
committed
fix lint errors
1 parent 6acfa7a commit 635ea36

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/integration/test-pool-connect-error.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ var assert = require('assert');
88
var server = mysql.createServer(function (conn) {
99
conn.serverHandshake({
1010
protocolVersion: 10,
11-
serverVersion: '5.6.10', //'node.js rocks',
11+
serverVersion: '5.6.10',
1212
connectionId: 1234,
1313
statusFlags: 2,
1414
characterSet: 8,
1515
capabilityFlags: 0xffffff,
16-
authCallback: function(params, cb) {
17-
cb(null, { message: 'too many connections', code: 1040});
16+
authCallback: function (params, cb) {
17+
cb(null, {message: 'too many connections', code: 1040});
1818
}
1919
});
2020
});
@@ -50,7 +50,7 @@ portfinder.getPort(function (err, port) {
5050

5151
});
5252

53-
process.on('exit', function() {
53+
process.on('exit', function () {
5454
assert.equal(err1.errno, 1040);
5555
assert.equal(err2.errno, 1040);
5656
});

0 commit comments

Comments
 (0)