change output of failing test to be a little more useful

This commit is contained in:
Jonathan Wren 2023-02-25 14:58:04 -08:00
parent 3956b75698
commit 75e145ae88
No known key found for this signature in database

View file

@ -92,7 +92,7 @@ def output_should_not_contain(expected_output, cli_run):
def output_should_be(expected_output, cli_run): def output_should_be(expected_output, cli_run):
actual = cli_run["stdout"].strip() actual = cli_run["stdout"].strip()
expected = expected_output.strip() expected = expected_output.strip()
assert expected == actual assert actual == expected
@then("the output should be empty") @then("the output should be empty")