Skip to content

Commit

Permalink
Minor test tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
odelalleau committed May 6, 2021
1 parent f94e3da commit 1eb0dcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_grammar.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@
("str_top_leading_escapes_2", r"\\\\ \${str}", r"\\\\ ${str}"),
("str_top_middle_escapes_1", r"abc\\\\\${str}", r"abc\\${str}"),
("str_top_middle_escapes_2", r"abc\\\\ \${str}", r"abc\\\\ ${str}"),
("str_top_trailing_escapes", "${str}" + "\\" * 5, "hi" + "\\" * 5),
("str_top_trailing_escapes", r" ${str}\\\ ".strip(), r" hi\\\ ".strip()),
("str_top_concat_interpolations", "${null}${float}", "None1.2"),
("str_top_issue_617", r""" ${test: "hi\\" }"} """, r" hi\"} "),
# Whitespaces.
Expand Down

0 comments on commit 1eb0dcc

Please sign in to comment.