Skip to content

Commit 8b05e32

Browse files
Trottjasnell
authored andcommitted
test: fix flaky test-net-timeout
The check for an 800ms window makesw assumptions about a setTimeout() not running late etc. Remove it. Refs: #34289 PR-URL: #38060 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent a0492ba commit 8b05e32

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/pummel/test-net-timeout.js

-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ const echo_server = net.createServer((socket) => {
4545
});
4646

4747
socket.on('data', (d) => {
48-
console.log(d);
4948
socket.write(d);
5049
});
5150

@@ -105,7 +104,4 @@ process.on('exit', () => {
105104
console.log(`diff = ${diff}`);
106105

107106
assert.ok(timeout < diff);
108-
109-
// Allow for 800 milliseconds more
110-
assert.ok(diff < timeout + 800);
111107
});

0 commit comments

Comments
 (0)