Skip to content

Commit e2dada6

Browse files
committed
Revert tests back to SIGQUIT.
Follow up on ebe313f
1 parent ebe313f commit e2dada6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_arbiter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def test_arbiter_stop_quick(close_sockets, kill):
9191
arbiter.WORKERS = {42: mock.Mock()}
9292
arbiter.stop(graceful=False)
9393
kill.assert_has_calls([
94-
mock.call(42, signal.SIGINT),
94+
mock.call(42, signal.SIGQUIT),
9595
mock.call(42, signal.SIGKILL),
9696
])
9797

@@ -108,7 +108,7 @@ def test_arbiter_stop_graceful_then_quick(close_sockets, kill):
108108
arbiter.stop()
109109
kill.assert_has_calls([
110110
mock.call(42, signal.SIGTERM),
111-
mock.call(42, signal.SIGINT),
111+
mock.call(42, signal.SIGQUIT),
112112
mock.call(42, signal.SIGKILL),
113113
])
114114

0 commit comments

Comments
 (0)