We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5aa912c commit a98163eCopy full SHA for a98163e
tests/features/steps/basic_commands.py
@@ -36,7 +36,7 @@ def step_ping_database(context):
36
def step_get_pong_response(context):
37
# exit code 0 is implied by the presence of cmd_output here, which
38
# is only set on a successful run.
39
- assert context.cmd_output.strip() == b"PONG", f"Output was {context.cmd_output}"
+ assert b"PONG" in context.cmd_output.strip(), f"Output was {context.cmd_output}"
40
41
42
@when("we run dbcli")
0 commit comments