Skip to content

Commit a98163e

Browse files
committed
Fix the behave test expectation about PING/PONG test.
1 parent 5aa912c commit a98163e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/features/steps/basic_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def step_ping_database(context):
3636
def step_get_pong_response(context):
3737
# exit code 0 is implied by the presence of cmd_output here, which
3838
# is only set on a successful run.
39-
assert context.cmd_output.strip() == b"PONG", f"Output was {context.cmd_output}"
39+
assert b"PONG" in context.cmd_output.strip(), f"Output was {context.cmd_output}"
4040

4141

4242
@when("we run dbcli")

0 commit comments

Comments
 (0)