Skip to content

Commit

Permalink
Wait longer during test (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
porridge authored Jun 3, 2024
1 parent f22445f commit f3b6b7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def await_welcome_screen(expect_light):
'Polling to observe a %s screen (which means that bambam '
'has started AND is displaying a welcome screen where the text '
'is blue).' % comment)
attempt_count = 40
attempt_count = 400
sleep_delay = 0.25
for attempt in range(attempt_count):
current_average_hsl = get_average_hsl()
Expand All @@ -134,7 +134,7 @@ def await_welcome_screen(expect_light):


def await_blank_screen(expect_light: bool):
attempt_count = 40
attempt_count = 400
sleep_delay = 0.25
if expect_light:
def check(c): return c >= 248
Expand Down

0 comments on commit f3b6b7b

Please sign in to comment.