Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: fix linting error
  • Loading branch information
jasnell committed Nov 22, 2017
commit 07b02555ccd7591f23cbd39d4b3ce3c6f3d6ff11
2 changes: 1 addition & 1 deletion test/parallel/test-https-truncate.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ const test = common.mustCall(function(res) {
res.on('data', function(chunk) {
bytes += chunk.length;
this.pause();
setTimeout(() => { this.resume() }, 1);
setTimeout(() => { this.resume(); }, 1);
});
});