Skip to content

Commit

Permalink
Increase security tests timeout to 15 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
zxzxwu authored and uael committed Oct 17, 2023
1 parent 16dc961 commit 9f68bd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion avatar/cases/le_security_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def on_done(_: Any) -> None:

connect_and_pair_task.add_done_callback(on_done)

ref_ev = await asyncio.wait_for(ref_pairing_fut, timeout=5.0)
ref_ev = await asyncio.wait_for(ref_pairing_fut, timeout=15.0)
self.ref.log.info(f'REF pairing event: {ref_ev.method_variant()}')

dut_ev_answer, ref_ev_answer = None, None
Expand Down
2 changes: 1 addition & 1 deletion avatar/cases/security_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def on_done(_: Any) -> None:

connect_and_pair_task.add_done_callback(on_done)

ref_ev = await asyncio.wait_for(ref_pairing_fut, timeout=5.0)
ref_ev = await asyncio.wait_for(ref_pairing_fut, timeout=15.0)
self.ref.log.info(f'REF pairing event: {ref_ev.method_variant()}')

dut_ev_answer, ref_ev_answer = None, None
Expand Down

0 comments on commit 9f68bd2

Please sign in to comment.