Skip to content

Commit

Permalink
test: fix flaky test-http-pipeline-flood
Browse files Browse the repository at this point in the history
PR-URL: #17955
Refs: #16317
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
apapirovski authored and MylesBorins committed Feb 12, 2018
1 parent 12bc25b commit dffe0e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-http-pipeline-flood.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ function parent() {
server.close();
}));

server.setTimeout(200, common.mustCall(function() {
server.setTimeout(200, common.mustCallAtLeast(function() {
child.kill();
}));
}, 1));
});
}

Expand Down

0 comments on commit dffe0e1

Please sign in to comment.