summaryrefslogtreecommitdiff
path: root/test_isort.py
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2018-02-01 22:43:36 -0800
committerTimothy Crosley <timothy.crosley@gmail.com>2018-02-01 22:43:36 -0800
commit1db36205f016ae4b72bb713aedf7f96b1be43723 (patch)
tree27776e591884561a94746637ea7d71871b7d2812 /test_isort.py
parentef2214909294c143f0b549aa9d03e2e8ec8c8bc5 (diff)
downloadisort-1db36205f016ae4b72bb713aedf7f96b1be43723.tar.gz
Fix indentation erro
Diffstat (limited to 'test_isort.py')
-rw-r--r--test_isort.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test_isort.py b/test_isort.py
index 429380cb..56cf85fe 100644
--- a/test_isort.py
+++ b/test_isort.py
@@ -364,10 +364,10 @@ def test_output_modes():
" lib12, lib13, lib14, lib15, lib16, lib17, lib18, lib20, lib21, lib22 "
"# NOQA comment\n")
- test_output_vertical_grid_grouped_doesnt_wrap_early = SortImports(file_contents=SINGLE_LINE_LONG_IMPORT,
- multi_line_output= \
- WrapModes.VERTICAL_GRID_GROUPED_NO_COMMA,
- line_length=40, indent=' ').output
+ test_case = SortImports(file_contents=SINGLE_LINE_LONG_IMPORT,
+ multi_line_output=WrapModes.VERTICAL_GRID_GROUPED_NO_COMMA,
+ line_length=40, indent=' ').output
+ test_output_vertical_grid_grouped_doesnt_wrap_early = test_case
assert test_output_vertical_grid_grouped_doesnt_wrap_early == ("from third_party import (\n"
" lib1, lib2, lib3, lib4, lib5, lib5ab\n"
")\n")