Try less times for EOF

signint_saviour
Tyler Goodlet 2022-07-29 17:51:33 -04:00
parent 937ed99e39
commit 87b2ccb86a
1 changed files with 1 additions and 1 deletions

View File

@ -753,7 +753,7 @@ def test_root_nursery_cancels_before_child_releases_tty_lock(
child.sendline('c')
time.sleep(0.1)
for i in range(10):
for i in range(3):
try:
child.expect(pexpect.EOF)
break