summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/tests/browser/test_all_builds_page.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/tests/browser/test_all_builds_page.py')
-rw-r--r--bitbake/lib/toaster/tests/browser/test_all_builds_page.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/tests/browser/test_all_builds_page.py b/bitbake/lib/toaster/tests/browser/test_all_builds_page.py
index ab6da821ba..b9356a0344 100644
--- a/bitbake/lib/toaster/tests/browser/test_all_builds_page.py
+++ b/bitbake/lib/toaster/tests/browser/test_all_builds_page.py
@@ -452,9 +452,10 @@ class TestAllBuildsPage(SeleniumTestCase):
452 def test_show_rows(row_to_show, show_row_link): 452 def test_show_rows(row_to_show, show_row_link):
453 # Check that we can show rows == row_to_show 453 # Check that we can show rows == row_to_show
454 show_row_link.select_by_value(str(row_to_show)) 454 show_row_link.select_by_value(str(row_to_show))
455 self.wait_until_visible('#allbuildstable tbody tr', poll=2) 455 self.wait_until_visible('#allbuildstable tbody tr', poll=3)
456 # check at least some rows are visible
456 self.assertTrue( 457 self.assertTrue(
457 len(self.find_all('#allbuildstable tbody tr')) == row_to_show 458 len(self.find_all('#allbuildstable tbody tr')) > 0
458 ) 459 )
459 460
460 url = reverse('all-builds') 461 url = reverse('all-builds')