diff options
author | Stefan Kögl <stefan@skoegl.net> | 2022-04-10 13:36:37 +0200 |
---|---|---|
committer | Stefan Kögl <stefan@skoegl.net> | 2022-04-10 13:36:37 +0200 |
commit | d9ec0f5f74975dfb4ebcc18efeb4cee69aa8e788 (patch) | |
tree | a8c0a54a32b5d9695fb5898250410307b7a9ba6f /tests.py | |
parent | f8c80b7c0631332c979985f13cc1a803f251c6b7 (diff) | |
download | python-json-pointer-d9ec0f5f74975dfb4ebcc18efeb4cee69aa8e788.tar.gz |
Fix invalid escape sequence (#50)
Diffstat (limited to 'tests.py')
-rwxr-xr-x | tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -129,7 +129,7 @@ class SpecificationTests(unittest.TestCase): ("/c%d", ['c%d']), ("/e^f", ['e^f']), ("/g|h", ['g|h']), - ("/i\\j", ['i\j']), + ("/i\\j", ['i\\j']), ("/k\"l", ['k"l']), ("/ ", [' ']), ("/m~0n", ['m~n']), |