Skip to content
Snippets Groups Projects
Commit 9fa3171f authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Don't mangle newlines when opening test fixtures; we want them untouched.

parent e20a5055
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ def data(filename):
def get_data(filename):
with open(data(filename), encoding="utf-8") as f:
with open(data(filename), newline="", encoding="utf-8") as f:
return f.read()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment