mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
tests: Fix TW bug reference number
This commit is contained in:
parent
bcc08c8135
commit
942f43d195
1 changed files with 2 additions and 2 deletions
|
@ -67,13 +67,13 @@ class TestBug268(TestCase):
|
||||||
self.assertIn("a/b or c", out)
|
self.assertIn("a/b or c", out)
|
||||||
|
|
||||||
|
|
||||||
class TestBug879(TestCase):
|
class TestBug880(TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
"""Executed before each test in the class"""
|
"""Executed before each test in the class"""
|
||||||
self.t = Task()
|
self.t = Task()
|
||||||
|
|
||||||
def test_backslash_at_eol(self):
|
def test_backslash_at_eol(self):
|
||||||
"""879: Backslash at end of description/annotation causes problems"""
|
"""880: Backslash at end of description/annotation causes problems"""
|
||||||
self.t("add one\\\\\\\\")
|
self.t("add one\\\\\\\\")
|
||||||
code, out, err = self.t("_get 1.description")
|
code, out, err = self.t("_get 1.description")
|
||||||
self.assertEqual("one\\\n", out)
|
self.assertEqual("one\\\n", out)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue