mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Fix SyntaxWarning invalid escape sequence in Python code (#3433)
This commit is contained in:
parent
380c740ff0
commit
b7551cbba6
37 changed files with 156 additions and 156 deletions
|
@ -70,9 +70,9 @@ class TestUtf8(TestCase):
|
|||
|
||||
code, out, err = self.t("ls")
|
||||
|
||||
expected = re.compile("\S\s{4}abc", re.MULTILINE)
|
||||
expected = re.compile(r"\S\s{4}abc", re.MULTILINE)
|
||||
self.assertRegex(out, expected)
|
||||
expected = re.compile("\S\s{5}def", re.MULTILINE)
|
||||
expected = re.compile(r"\S\s{5}def", re.MULTILINE)
|
||||
self.assertRegex(out, expected)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue