Skip to content

Commit

Permalink
test: fix flaky test-http2-session-timeout
Browse files Browse the repository at this point in the history
Increase server timeout to reduce likelihood of triggering race
conditions.

Fixes: nodejs#15326
  • Loading branch information
Trott committed Sep 14, 2017
1 parent 082c434 commit 6a6eaa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-http2-session-timeout.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if (!common.hasCrypto)
common.skip('missing crypto');
const h2 = require('http2');

const serverTimeout = common.platformTimeout(200);
const serverTimeout = common.platformTimeout(1200);
const callTimeout = common.platformTimeout(10);

const server = h2.createServer();
Expand Down

0 comments on commit 6a6eaa9

Please sign in to comment.