Skip to content

Commit befbd31

Browse files
committed
fixup! feat: Add support for Python 3.13
1 parent 9e6b32b commit befbd31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_charliterals.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_character_literals(self):
2121
try:
2222
re.match("\911", "")
2323
except Exception as exp:
24-
assert exp.msg == "invalid group reference 91 at position 1"
24+
assert exp.msg == "invalid escape sequence: \9"
2525

2626

2727
def test_character_class_literals(self):
@@ -37,4 +37,4 @@ def test_character_class_literals(self):
3737
try:
3838
re.match("[\911]", "")
3939
except Exception as exp:
40-
assert exp.msg == "invalid group reference 91 at position 1"
40+
assert exp.msg == "invalid escape sequence: \9"

0 commit comments

Comments
 (0)