Skip to content

Commit

Permalink
Fix CRLF handling in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
purplesyringa committed Jun 7, 2024
1 parent a8a275e commit dd28cc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def run(name, input, output, use_pipe):


def assert_equal_files(a, b):
subprocess.run(["git", "diff", "--no-index", a, b], check=True)
subprocess.run(["git", "diff", "--no-index", "--ignore-cr-at-eol", a, b], check=True)


if bench:
Expand Down

0 comments on commit dd28cc9

Please sign in to comment.