Skip to content

Commit f8634ef

Browse files
committed
Fix test cases for changed output
1 parent 13a172c commit f8634ef

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

system_tests/system_test_common.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,12 +150,10 @@ def check_wait_for_all_nodes_stopped_output(output):
150150
"""
151151
Check the output of the manager for the part where it waits for all nodes to be stopped.
152152
"""
153-
assert next_output_matches(output, r"Waiting for all nodes to be stopped")
153+
assert next_output_matches(output, r"Waiting for .* to be stopped")
154154
while next_output_matches(output, r"Still waiting for .* to be stopped"):
155155
pass
156-
assert not next_output_matches(
157-
output, r"Giving up on waiting for all nodes to be stopped"
158-
)
156+
assert not next_output_matches(output, r"Giving up on waiting for .* to be stopped")
159157

160158

161159
def check_wait_for_all_nodes_started_output(output):

0 commit comments

Comments
 (0)