Fix flakiness in new tests due to change in hash seed
This commit is contained in:
parent
c9bddd9c9a
commit
b403906bc8
2 changed files with 7 additions and 2 deletions
|
@ -78,7 +78,12 @@ def test_list_build_source_namespaces(githost_trigger):
|
|||
'id': 'someorg'
|
||||
}
|
||||
]
|
||||
assert githost_trigger.list_build_source_namespaces() == namespaces_expected
|
||||
|
||||
found = githost_trigger.list_build_source_namespaces()
|
||||
found.sort()
|
||||
|
||||
namespaces_expected.sort()
|
||||
assert found == namespaces_expected
|
||||
|
||||
|
||||
@pytest.mark.parametrize('namespace, expected', [
|
||||
|
|
Reference in a new issue