Skip to content

Commit e962ad1

Browse files
committed
Fixup tests.
1 parent f0b4367 commit e962ad1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/selfie-lib/tests/LiteralString_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ def test_encode_single_with_dollars(self, value, expected):
2626
@pytest.mark.parametrize(
2727
("value", "expected"),
2828
[
29-
("1", "'''\n1'''"),
30-
("\\", "'''\n\\\\'''"),
29+
("1", "'''1'''"),
30+
("\\", "'''\\\\'''"),
3131
(
3232
" leading\ntrailing ",
33-
"'''\n" + " leading\n" + "trailing \\u0020'''",
33+
"''' leading\ntrailing \\u0020'''",
3434
),
3535
],
3636
)

0 commit comments

Comments
 (0)