Skip to content

Commit d9ec0f5

Browse files
committed
Fix invalid escape sequence (#50)
1 parent f8c80b7 commit d9ec0f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def test_parts(self):
129129
("/c%d", ['c%d']),
130130
("/e^f", ['e^f']),
131131
("/g|h", ['g|h']),
132-
("/i\\j", ['i\j']),
132+
("/i\\j", ['i\\j']),
133133
("/k\"l", ['k"l']),
134134
("/ ", [' ']),
135135
("/m~0n", ['m~n']),

0 commit comments

Comments
 (0)