Skip to content

Commit

Permalink
test: fix linting error
Browse files Browse the repository at this point in the history
Fast-tracked on landing to unbreak CI

PR-URL: #17251
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
jasnell authored and gibfahn committed Dec 20, 2017
1 parent 0e4a681 commit 90630ae
Showing 1 changed file with 1 addition and 1 deletion.
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);
});
});

0 comments on commit 90630ae

Please sign in to comment.