Skip to content

Commit 0ee8733

Browse files
Fix test to ensure output is the same
1 parent 844c85c commit 0ee8733

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/unit/test_regressions.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1610,12 +1610,12 @@ def test_isort_shouldnt_move_noqa_comment_issue_1594():
16101610

16111611

16121612
def test_isort_correctly_handles_unix_vs_linux_newlines_issue_1566():
1613-
IMPORT_STATEMENT = (
1613+
import_statement = (
16141614
"from impacket.smb3structs import (\n"
16151615
"SMB2_CREATE, SMB2_FLAGS_DFS_OPERATIONS, SMB2_IL_IMPERSONATION, "
16161616
"SMB2_OPLOCK_LEVEL_NONE, SMB2Create,"
16171617
"\nSMB2Create_Response, SMB2Packet)\n"
16181618
)
1619-
assert isort.code(IMPORT_STATEMENT, line_length=120) == isort.code(
1620-
IMPORT_STATEMENT.replace("\n", "\r\n"), line_length=120
1621-
)
1619+
assert isort.code(import_statement, line_length=120) == isort.code(
1620+
import_statement.replace("\n", "\r\n"), line_length=120
1621+
).replace("\r\n", "\n")

0 commit comments

Comments
 (0)