From 75e145ae8859eeac0cf2e0f5f066dfaf23a44ec2 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 25 Feb 2023 14:58:04 -0800 Subject: [PATCH] change output of failing test to be a little more useful --- tests/lib/then_steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/then_steps.py b/tests/lib/then_steps.py index bdf48112..3e55929b 100644 --- a/tests/lib/then_steps.py +++ b/tests/lib/then_steps.py @@ -92,7 +92,7 @@ def output_should_not_contain(expected_output, cli_run): def output_should_be(expected_output, cli_run): actual = cli_run["stdout"].strip() expected = expected_output.strip() - assert expected == actual + assert actual == expected @then("the output should be empty")