Skip to content

Commit

Permalink
pw_console: Remove repl_pane_test timeouts
Browse files Browse the repository at this point in the history
BUG=239429244

Change-Id: Ie5cbe75abf7ee7fdc8caae537ede9dc205a3e497
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/102541
Reviewed-by: Anthony DiGirolamo <tonymd@google.com>
Commit-Queue: Suraj Harjani <harjani@google.com>
Pigweed-Auto-Submit: Anthony DiGirolamo <tonymd@google.com>
  • Loading branch information
Suraj Harjani authored and CQ Bot Account committed Jul 21, 2022
1 parent f9bfff1 commit 06ef7e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pw_console/py/repl_pane_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def run():
if user_code1.stdout_check_task:
await user_code1.stdout_check_task
# Wait for test done callback.
user_code_done.wait(timeout=3)
user_code_done.wait()

# Check user_code1 results
# NOTE: Avoid using assert_has_calls. Thread timing can make the
Expand Down Expand Up @@ -205,7 +205,7 @@ def run():
if user_code2.stdout_check_task:
await user_code2.stdout_check_task
# Wait for test done callback.
user_code_done.wait(timeout=3)
user_code_done.wait()

# Check user_code2 results
# NOTE: Avoid using assert_has_calls. Thread timing can make the
Expand Down

0 comments on commit 06ef7e2

Please sign in to comment.