mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Remove waiting on 'exited' in test_start_stop, since it might be missing.
This commit is contained in:
parent
9b580b7626
commit
b26c9cfefa
1 changed files with 0 additions and 4 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue