Skip to content

Commit 3c2aea4

Browse files
committed
update test result with new changes
1 parent bbbd433 commit 3c2aea4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_tokenize.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1958,13 +1958,13 @@ def test_string(self):
19581958
self.check_tokenize(r'f"abc\
19591959
def"', """\
19601960
FSTRING_START \'f"\' (1, 0) (1, 2)
1961-
FSTRING_END 'abc\\\\\\ndef' (2, -1) (2, 3)
1961+
FSTRING_END 'abc\\\\\\ndef' (1, 2) (2, 3)
19621962
""")
19631963

19641964
self.check_tokenize(r'Rf"abc\
19651965
def"', """\
19661966
FSTRING_START 'Rf"' (1, 0) (1, 3)
1967-
FSTRING_END 'abc\\\\\\ndef' (2, -1) (2, 3)
1967+
FSTRING_END 'abc\\\\\\ndef' (1, 3) (2, 3)
19681968
""")
19691969

19701970
def test_function(self):

0 commit comments

Comments
 (0)