summaryrefslogtreecommitdiff
path: root/test/parallel/test-https-truncate.js
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2017-11-22 07:41:30 -0800
committerJames M Snell <jasnell@gmail.com>2017-11-22 07:49:15 -0800
commitcf5ad75bc45ea3e969a4eb1eeec6f3314e7ed565 (patch)
treecd53363a8f464cf818e949ab0eefe5249f47271a /test/parallel/test-https-truncate.js
parent685abcde0eb985aab568c5b6aa72bd7dfb3e74e0 (diff)
downloadandroid-node-v8-cf5ad75bc45ea3e969a4eb1eeec6f3314e7ed565.tar.gz
android-node-v8-cf5ad75bc45ea3e969a4eb1eeec6f3314e7ed565.tar.bz2
android-node-v8-cf5ad75bc45ea3e969a4eb1eeec6f3314e7ed565.zip
test: fix linting error
Fast-tracked on landing to unbreak CI PR-URL: https://github.com/nodejs/node/pull/17251 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/parallel/test-https-truncate.js')
-rw-r--r--test/parallel/test-https-truncate.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-https-truncate.js b/test/parallel/test-https-truncate.js
index 30a869c070..c549da1571 100644
--- a/test/parallel/test-https-truncate.js
+++ b/test/parallel/test-https-truncate.js
@@ -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);
});
});