Skip to content

Commit

Permalink
Fix lint warnings in netMock.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Abestanis authored Sep 8, 2024
1 parent 56c5d57 commit bcb3621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/mocks/netMock.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Socket extends EventEmitter {
}
}

setNoDelay(noDelay) {
setNoDelay() {
return this;
}

Expand Down Expand Up @@ -60,6 +60,6 @@ class Server extends EventEmitter {

exports.Server = Server;

exports.createServer = function (options, connectionListener) {
exports.createServer = function(options, connectionListener) {
return new Server(options, connectionListener);
};

0 comments on commit bcb3621

Please sign in to comment.