Merge "Fix tobiko.fail called from assert_equal_containers_state" into osp-16.2

This commit is contained in:
Zuul 2024-03-07 07:51:03 +00:00 committed by Gerrit Code Review
commit 7d175f18d6

View File

@ -693,5 +693,6 @@ def assert_equal_containers_state(expected_containers_list=None,
" OK, all containers are on the same state") " OK, all containers are on the same state")
return return
if failures: if failures:
tobiko.fail('container states mismatched:\n{!s}', '\n'.join( tobiko.fail(
failures)) 'container states mismatched:\n{!s}'.format('\n'.join(failures)),
ContainerMismatchException)