Skip to content

Commit

Permalink
It's getting late (fix test)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielNoord authored and Pierre-Sassoulas committed Nov 24, 2021
1 parent 6aaa0f2 commit a6f998b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testutils/test_output_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ def test_output_line_to_csv(confidence: Confidence, message: Callable) -> None:
output_line = OutputLine.from_msg(message(confidence))
csv = output_line.to_csv()
expected_column = "2" if PY38_PLUS else "0"
expected_end_lineno = 1 if PY38_PLUS else "None"
expected_end_column = 3 if PY38_PLUS else "None"
expected_end_lineno = "1" if PY38_PLUS else "None"
expected_end_column = "3" if PY38_PLUS else "None"
assert csv == (
"missing-docstring",
"1",
Expand Down

0 comments on commit a6f998b

Please sign in to comment.