Skip to content

Commit

Permalink
20s timeout for ui update
Browse files Browse the repository at this point in the history
  • Loading branch information
damoore044 committed Jan 19, 2024
1 parent 2124454 commit 598307d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/foreman/ui/test_errata.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 598307d

Please sign in to comment.