From 942f43d1952bba9784e9084d94a497f4e2377c1c Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Tue, 29 Dec 2020 19:39:27 -0500 Subject: [PATCH] tests: Fix TW bug reference number --- test/quotes.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/quotes.t b/test/quotes.t index b0c3e85b0..e99f0330c 100755 --- a/test/quotes.t +++ b/test/quotes.t @@ -67,13 +67,13 @@ class TestBug268(TestCase): self.assertIn("a/b or c", out) -class TestBug879(TestCase): +class TestBug880(TestCase): def setUp(self): """Executed before each test in the class""" self.t = Task() 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\\\\\\\\") code, out, err = self.t("_get 1.description") self.assertEqual("one\\\n", out)