Skip to content

Commit a1f2782

Browse files
Create failing test for issue #1566
1 parent 5a0ebba commit a1f2782

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

tests/unit/test_regressions.py

+12
Original file line numberDiff line numberDiff line change
@@ -1607,3 +1607,15 @@ def test_isort_shouldnt_move_noqa_comment_issue_1594():
16071607
)
16081608
"""
16091609
)
1610+
1611+
1612+
def test_isort_correctly_handles_unix_vs_linux_newlines_issue_1566():
1613+
IMPORT_STATEMENT = (
1614+
"from impacket.smb3structs import (\n"
1615+
"SMB2_CREATE, SMB2_FLAGS_DFS_OPERATIONS, SMB2_IL_IMPERSONATION, "
1616+
"SMB2_OPLOCK_LEVEL_NONE, SMB2Create,"
1617+
"\nSMB2Create_Response, SMB2Packet)\n"
1618+
)
1619+
assert isort.code(IMPORT_STATEMENT, line_length=120) == isort.code(
1620+
IMPORT_STATEMENT.replace("\n", "\r\n"), line_length=120
1621+
)

0 commit comments

Comments
 (0)