Skip to content

Commit

Permalink
fix: update python assertions for output format changes in go tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kruskall committed Nov 10, 2023
1 parent 94ea084 commit b700593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/system/apmserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ def wait_until_started(self):
self.command_output = log[:pos]
for trimmed in log[pos:].strip().splitlines():
# ensure only skipping expected lines
assert trimmed.split(None, 1)[0] in ("PASS", "coverage:"), trimmed
assert trimmed.split(None, 2)[1] in ("PASS", "coverage:"), trimmed

def stop_proc(self):
return
Expand Down

0 comments on commit b700593

Please sign in to comment.