From 598307d90f40ab1c5bddcda19e71141231ba4f83 Mon Sep 17 00:00:00 2001 From: David Moore Date: Thu, 18 Jan 2024 19:21:25 -0500 Subject: [PATCH] 20s timeout for ui update --- tests/foreman/ui/test_errata.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/foreman/ui/test_errata.py b/tests/foreman/ui/test_errata.py index 61d09b40cd3..c3dbee020e5 100644 --- a/tests/foreman/ui/test_errata.py +++ b/tests/foreman/ui/test_errata.py @@ -639,7 +639,7 @@ def test_host_content_errata_tab_pagination( lambda: session.host_new.get_errata_pagination(_chost_name).read() not in _invalid_pagination, timeout=20, - delay=1, + delay=2, ) # read updated pagination pf4_pagination = session.host_new.get_errata_pagination(_chost_name) @@ -682,14 +682,14 @@ def test_host_content_errata_tab_pagination( # check that there are no applicable errata left for Chost assert registered_contenthost.applicable_errata_count == 0 # The errata table is not present when empty, it should not be paginated - # timeout is 10s, for tab loading with no pagination {}, on read. + # timeout is 20s, for tab loading with no pagination {}, on read. _items = -1 _ex_raised = False try: wait_for( lambda: session.host_new.get_errata_pagination(_chost_name).read() == {}, - timeout=10, - delay=1, + timeout=20, + delay=2, ) except NoSuchElementException: # pagination read raised exception, does not exist