26 lines
714 B
Diff
26 lines
714 B
Diff
From d9ec0f5f74975dfb4ebcc18efeb4cee69aa8e788 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Stefan=20K=C3=B6gl?= <stefan@skoegl.net>
|
|
Date: Sun, 10 Apr 2022 13:36:37 +0200
|
|
Subject: [PATCH] Fix invalid escape sequence (#50)
|
|
|
|
---
|
|
tests.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests.py b/tests.py
|
|
index dafbe89..9252369 100755
|
|
--- a/tests.py
|
|
+++ b/tests.py
|
|
@@ -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']),
|
|
--
|
|
2.27.0
|
|
|