Skip to content

Commit

Permalink
update test result with new changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mgmacias95 committed Mar 24, 2023
1 parent bbbd433 commit 3c2aea4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/test/test_tokenize.py
Original file line number Diff line number Diff line change
Expand Up @@ -1958,13 +1958,13 @@ def test_string(self):
self.check_tokenize(r'f"abc\
def"', """\
FSTRING_START \'f"\' (1, 0) (1, 2)
FSTRING_END 'abc\\\\\\ndef' (2, -1) (2, 3)
FSTRING_END 'abc\\\\\\ndef' (1, 2) (2, 3)
""")

self.check_tokenize(r'Rf"abc\
def"', """\
FSTRING_START 'Rf"' (1, 0) (1, 3)
FSTRING_END 'abc\\\\\\ndef' (2, -1) (2, 3)
FSTRING_END 'abc\\\\\\ndef' (1, 3) (2, 3)
""")

def test_function(self):
Expand Down

0 comments on commit 3c2aea4

Please sign in to comment.