Skip to content

Commit 432e7cb

Browse files
committed
Revert "Debug Windows newline issue (sorry for the noise)"
This reverts commit 322bfe5.
1 parent 41da5d8 commit 432e7cb

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

mypyc/test-data/run-strings.test

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -581,8 +581,7 @@ def test_fstring_conversion() -> None:
581581

582582
tmp_str = """this
583583
is a new line."""
584-
res_str = f'Test: {tmp_str!a}'
585-
assert res_str == "Test: 'this\\n is a new line.'", res_str
584+
assert f'Test: {tmp_str!a}' == "Test: 'this\\n is a new line.'"
586585

587586
s = 'test: āĀēĒčČ..šŠūŪžŽ'
588587
assert f'{s}' == 'test: āĀēĒčČ..šŠūŪžŽ'

0 commit comments

Comments
 (0)