test: Increase window destroy timeout to 30s by default

Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
This commit is contained in:
Daniel Silverstone 2020-02-22 17:51:07 +00:00
parent f9b80469e0
commit e8e7485089
No known key found for this signature in database
GPG Key ID: C30DF439F2987D74
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ def run_test_step_action_window_close(ctx, step):
tag = step['window']
assert ctx['windows'].get(tag) is not None
win = ctx['windows'].pop(tag)
timeout = int(step.get('timeout', 5))
timeout = int(step.get('timeout', 30))
win.kill()
win.wait_until_dead(timeout=timeout)
assert not win.alive