Skip to content

Commit 5fdf4a4

Browse files
cjihrigBridgeAR
authored andcommittedOct 10, 2019
test: remove extra process.exit()
process.exit() has a tendency to hide test failures because it forces the process to exit. This test doesn't need the process.exit(), so this commit removes it. PR-URL: #29873 Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 6a5d401 commit 5fdf4a4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed
 

‎test/parallel/test-http2-connect-options.js

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ server.listen(0, '127.0.0.1', common.mustCall(() => {
3636
client.close();
3737
req.close();
3838
server.close();
39-
process.exit();
4039
}));
4140
req.end();
4241
}));

0 commit comments

Comments
 (0)
Please sign in to comment.