From b26c9cfefaeef1ae6ca6e27eaf105cd09ecb8f1e Mon Sep 17 00:00:00 2001 From: Pavel Minaev Date: Fri, 16 Nov 2018 22:37:27 -0800 Subject: [PATCH] Remove waiting on 'exited' in test_start_stop, since it might be missing. --- pytests/func/test_start_stop.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pytests/func/test_start_stop.py b/pytests/func/test_start_stop.py index 74175f64..28ecd839 100644 --- a/pytests/func/test_start_stop.py +++ b/pytests/func/test_start_stop.py @@ -71,8 +71,6 @@ def test_wait_on_normal_exit_enabled(pyfile, run_as, start_method): session.send_request('continue').wait_for_response(freeze=False) session.expected_returncode = ANY.int - session.wait_for_next(Event('exited')) - assert session.read_json() == 'done' session.process.stdin.write(b' \r\n') @@ -117,8 +115,6 @@ def test_wait_on_abnormal_exit_enabled(pyfile, run_as, start_method): session.send_request('continue').wait_for_response(freeze=False) session.expected_returncode = ANY.int - session.wait_for_next(Event('exited')) - assert session.read_json() == 'done' session.process.stdin.write(b' \r\n')