summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2019-02-28 02:20:40 -0800
committerTimothy Crosley <timothy.crosley@gmail.com>2019-02-28 02:20:40 -0800
commit1a80f6a5750dfb89e53bebe8d751aa2dee861cfc (patch)
tree6ea7f00931f41ccd971b9a477bb2769d50c4ccfc
parent1706b728596f9c9de0c93794627331f9eaf59df2 (diff)
downloadisort-feature/fix-windows-support.tar.gz
-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'