Skip to content

Commit 6acedc9

Browse files
committed
Longer timeout for slider input test
1 parent 8400bb6 commit 6acedc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

e2e/inputs/test_input_slider.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ def test_input_slider_kitchen(page: Page, slider_app: ShinyAppProc) -> None:
4444

4545
# # Duplicate logic of next test. Only difference is `max_err_values=15`
4646
# try:
47-
# obs.set("not-a-number", timeout=200)
47+
# obs.set("not-a-number", timeout=800)
4848
# except ValueError as e:
4949
# values_found = '"10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", ...'
5050
# assert values_found in str(
5151
# e
5252
# ), "Error message should contain the list of first 15 valid values"
5353

5454
try:
55-
obs.set("not-a-number", timeout=200, max_err_values=4)
55+
obs.set("not-a-number", timeout=800, max_err_values=4)
5656
except ValueError as e:
5757
values_found = '"10", "11", "12", "13", ...'
5858
assert values_found in str(

0 commit comments

Comments
 (0)