diff options
author | James M Snell <jasnell@gmail.com> | 2017-07-18 09:31:38 -0700 |
---|---|---|
committer | James M Snell <jasnell@gmail.com> | 2017-08-04 12:56:24 -0700 |
commit | 033c3b0a4da75bffc9bfc9c456033aa684757179 (patch) | |
tree | 18a757fc04d2bde21468250db3142af437d9b3b4 /test/parallel/test-http2-client-unescaped-path.js | |
parent | 09b0b1bd484c3bcdfa932c8712680f0bfbc2db02 (diff) | |
download | node-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.js | 2 |
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(); |