summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-client-unescaped-path.js
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2017-07-18 09:31:38 -0700
committerJames M Snell <jasnell@gmail.com>2017-08-04 12:56:24 -0700
commit033c3b0a4da75bffc9bfc9c456033aa684757179 (patch)
tree18a757fc04d2bde21468250db3142af437d9b3b4 /test/parallel/test-http2-client-unescaped-path.js
parent09b0b1bd484c3bcdfa932c8712680f0bfbc2db02 (diff)
downloadnode-new-033c3b0a4da75bffc9bfc9c456033aa684757179.tar.gz
test: fix flaky test-http2-client-unescaped-path on osx
PR-URL: https://github.com/nodejs/node/pull/14239 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'test/parallel/test-http2-client-unescaped-path.js')
-rwxr-xr-x[-rw-r--r--]test/parallel/test-http2-client-unescaped-path.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-http2-client-unescaped-path.js b/test/parallel/test-http2-client-unescaped-path.js
index d92d40492e..95b5c04b0f 100644..100755
--- a/test/parallel/test-http2-client-unescaped-path.js
+++ b/test/parallel/test-http2-client-unescaped-path.js
@@ -13,7 +13,7 @@ const count = 32;
server.listen(0, common.mustCall(() => {
const client = http2.connect(`http://localhost:${server.address().port}`);
- let remaining = count;
+ let remaining = count + 1;
function maybeClose() {
if (--remaining === 0) {
server.close();