Skip to content

Commit f7694cc

Browse files
Increase linger for test reliability.
1 parent 46ff9f0 commit f7694cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/context-process-exit-test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ describe("context process exit", function() {
4343
this.slow(1000)
4444
const {stderr} = await createProcess(() => {
4545
zmq.context.blocky = true
46-
const socket1 = new zmq.Dealer({linger: 600})
46+
const socket1 = new zmq.Dealer({linger: 750})
4747
socket1.connect("tcp://127.0.0.1:4567")
4848
socket1.send(null)
4949
})
@@ -65,7 +65,7 @@ describe("context process exit", function() {
6565
this.slow(1000)
6666
const {stderr} = await createProcess(() => {
6767
zmq.context.blocky = false
68-
const socket1 = new zmq.Dealer({linger: 600})
68+
const socket1 = new zmq.Dealer({linger: 750})
6969
socket1.connect("tcp://127.0.0.1:4567")
7070
socket1.send(null)
7171
})

0 commit comments

Comments
 (0)