From 97f622b99e55cbca2c4e78fc6c6ae3cfb1ec46a1 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Tue, 18 Jul 2017 09:31:38 -0700 Subject: [PATCH] test: fix flaky test-http2-client-unescaped-path on osx Backport-PR-URL: https://github.com/nodejs/node/pull/14813 Backport-Reviewed-By: Anna Henningsen Backport-Reviewed-By: Timothy Gu PR-URL: https://github.com/nodejs/node/pull/14239 Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: Matteo Collina --- test/parallel/test-http2-client-unescaped-path.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 test/parallel/test-http2-client-unescaped-path.js diff --git a/test/parallel/test-http2-client-unescaped-path.js b/test/parallel/test-http2-client-unescaped-path.js old mode 100644 new mode 100755 index d92d40492e204c..95b5c04b0fed6a --- 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();