Skip to content

Commit

Permalink
Fix new ruff rule
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbuwen committed Aug 18, 2023
1 parent 20def61 commit 9dca200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_direct_mode(no_cover): # with coverage enabled this test breaks
""",
)
virtuoso = b'success 1337\nsuccess 42'
p = run(['python', '-c', code], capture_output=True, input=virtuoso)
p = run(['python', '-c', code], capture_output=True, input=virtuoso, check=False)

out = p.stdout.replace(b' ', b'')
assert p.stderr == b'cell_view=1337\n'
Expand Down

0 comments on commit 9dca200

Please sign in to comment.