diff options
author | Tim Orling <tim.orling@konsulko.com> | 2024-06-11 09:13:36 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-06-12 21:15:50 +0100 |
commit | ddc86a93dafbe684786116e969ece67735246779 (patch) | |
tree | fb392e0dd78a84fe0b3142639abbad4440caeb11 /bitbake/lib/toaster | |
parent | 82596bb8a08dda79395a27e58b3e8cdb9eb0a7d1 (diff) | |
download | poky-ddc86a93dafbe684786116e969ece67735246779.tar.gz |
bitbake: test_project_page: fix failing test_single_layer_page
The test_single_layer_page test case consistently fails. It is not obvious why
but if we change the argument in the following from 8 to 7 it passes.
url = reverse("layerdetails", args=(TestProjectPage.project_id, 8))
E selenium.common.exceptions.TimeoutException: Message: An element matching "#change-notification" should be visible
=========================== short test summary info ============================
FAILED ../bitbake/lib/toaster/tests/functional/test_project_page.py::TestProjectPage::test_single_layer_page
(Bitbake rev: c7e12145d8ea641925e3c06ba4f11c2dae66288a)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster')
-rw-r--r-- | bitbake/lib/toaster/tests/functional/test_project_page.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/tests/functional/test_project_page.py b/bitbake/lib/toaster/tests/functional/test_project_page.py index adbe3587e4..0e36b44ffd 100644 --- a/bitbake/lib/toaster/tests/functional/test_project_page.py +++ b/bitbake/lib/toaster/tests/functional/test_project_page.py | |||
@@ -708,7 +708,7 @@ class TestProjectPage(SeleniumFunctionalTestCase): | |||
708 | - Check layer summary | 708 | - Check layer summary |
709 | - Check layer description | 709 | - Check layer description |
710 | """ | 710 | """ |
711 | url = reverse("layerdetails", args=(TestProjectPage.project_id, 8)) | 711 | url = reverse("layerdetails", args=(TestProjectPage.project_id, 7)) |
712 | self.get(url) | 712 | self.get(url) |
713 | self.wait_until_visible('.page-header') | 713 | self.wait_until_visible('.page-header') |
714 | # check title is displayed | 714 | # check title is displayed |