diff --git a/tests/test_nginx.py b/tests/test_nginx.py index 69742edb7..07e07239c 100644 --- a/tests/test_nginx.py +++ b/tests/test_nginx.py @@ -450,7 +450,7 @@ def test_nginx_proxy(*, ssl, worker_class, dummy_ssl_cert, read_size=1024): server.graceful_quit( expect={ - "Handling signal: term", + "Handling signal: SIGTERM", "Shutting down: Master", }, ) diff --git a/tests/test_wrk.py b/tests/test_wrk.py index f89dc0131..fdce18a15 100644 --- a/tests/test_wrk.py +++ b/tests/test_wrk.py @@ -401,6 +401,6 @@ def test_wrk(*, ssl, worker_class, dummy_ssl_cert, read_size=1024): server.graceful_quit( ignore={"GET %s HTTP/1.1" % path, "Ignoring connection epipe", "Ignoring connection reset"}, expect={ - "[INFO] Handling signal: term", + "[INFO] Handling signal: SIGTERM", }, )