From d2f3fc4957a55c86dbb4a67213542d9a9bd8fcd5 Mon Sep 17 00:00:00 2001 From: Masen Furer Date: Wed, 4 Dec 2024 23:07:33 -0800 Subject: [PATCH] test_dynamic_routes: increase polling timeout --- tests/integration/test_dynamic_routes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration/test_dynamic_routes.py b/tests/integration/test_dynamic_routes.py index 81d71e6c3..c226a4d8e 100644 --- a/tests/integration/test_dynamic_routes.py +++ b/tests/integration/test_dynamic_routes.py @@ -405,7 +405,8 @@ async def test_render_dynamic_arg( el = driver.find_element(By.ID, id) assert el assert ( - dynamic_route.poll_for_content(el, exp_not_equal=expect_not) == expected + dynamic_route.poll_for_content(el, timeout=30, exp_not_equal=expect_not) + == expected ) assert_content("0", "")