summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test_isort.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_isort.py b/test_isort.py
index 8d03b5f3..353978ac 100644
--- a/test_isort.py
+++ b/test_isort.py
@@ -2521,7 +2521,7 @@ def test_new_lines_are_preserved():
SortImports(rn_newline.name, settings_path=os.getcwd())
with io.open(rn_newline.name) as new_line_file:
- print(new_line_file.read()
+ print(new_line_file.read())
with io.open(rn_newline.name, newline='') as rn_newline_file:
rn_newline_contents = rn_newline_file.read()
assert rn_newline_contents == 'import os\r\nimport sys\r\n'