Fix assertion syntax warning

This commit is contained in:
Aaron Lichtman 2019-11-09 05:52:00 +01:00
parent 09c0cccad2
commit c65c78c4eb
No known key found for this signature in database
GPG key ID: 22368077DE9F9903

View file

@ -118,7 +118,7 @@ def has_error(context):
@then('we should get no error')
def no_error(context):
assert context.exit_status is 0, context.exit_status
assert context.exit_status == 0, context.exit_status
@then('the output should be parsable as json')