mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 13:08:31 +02:00
Fix assertion syntax warning
This commit is contained in:
parent
09c0cccad2
commit
c65c78c4eb
1 changed files with 1 additions and 1 deletions
|
@ -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')
|
||||
|
|
Loading…
Add table
Reference in a new issue