Fix SyntaxWarning invalid escape sequence in Python code (#3433)
This commit is contained in:
@@ -263,7 +263,7 @@ class TestBug1479(TestCase):
|
||||
self.t("add project:P1 one")
|
||||
self.t("add project:P2 one two")
|
||||
|
||||
code, out, err = self.t("description:one\ two list")
|
||||
code, out, err = self.t(r"description:one\ two list")
|
||||
self.assertNotIn("P1", out)
|
||||
self.assertIn("P2", out)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user