rework mocks in test suite for new messaging functionality

This commit is contained in:
Jonathan Wren 2022-05-28 15:13:27 -07:00
parent d2f2967bc1
commit 34df64c989
4 changed files with 41 additions and 45 deletions

View file

@ -61,7 +61,9 @@ def output_should_contain(
assert (expected_output in cli_run["stderr"]) == we_should, output_str
else:
assert (expected_output in cli_run[which_output_stream]) == we_should, output_str
assert (
expected_output in cli_run[which_output_stream]
) == we_should, output_str
@then(parse("the output should not contain\n{expected_output}"))