Skip to content

Commit 30dccd8

Browse files
committed
fix lint errors
1 parent 9bad921 commit 30dccd8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/packets/handshake.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Handshake.prototype.toPacket = function (sequenceId) {
7171
packet.writeInt16(this.statusFlags);
7272
packet.writeInt16(this.capabilityFlags >> 16);
7373
packet.writeInt8(21); // authPluginDataLength
74-
packet.skip(10)
74+
packet.skip(10);
7575
packet.writeBuffer(this.authPluginData2);
7676
packet.writeInt8(0);
7777
packet.writeString('mysql_native_password');

test/integration/test-auth-switch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var mysql = require('../../index.js');
33
var Command = require('../../lib/commands/command.js');
44
var Packets = require('../../lib/packets/index.js');
55

6-
var Buffer = require('safe-buffer').Buffer
6+
var Buffer = require('safe-buffer').Buffer;
77
var assert = require('assert');
88

99
function TestAuthSwitchHandshake (args)

0 commit comments

Comments
 (0)