From 48bf65af5ad1166c8d7459fac36aae56f8567f0f Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 12 Jul 2015 16:31:02 -0400 Subject: [PATCH] Test: Cleaned up method string --- test/add.t | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/test/add.t b/test/add.t index 2a247fc09..78bd7be2e 100755 --- a/test/add.t +++ b/test/add.t @@ -66,8 +66,10 @@ class TestAdd(TestCase): self.assertRegexpMatches(out, "UUID\s+" + UUID_REGEXP + "\n") def test_floating_point_preservation(self): - """Verify that floating point numbers are unmolested""" - # Bug 924: '1.0' --> '1.0000' + """Verify that floating point numbers are unmolested + + Bug 924: '1.0' --> '1.0000' + """ self.t("add release 1.0") self.t("add 'release 2.0'") self.t("add \\\"release 3.0\\\"") @@ -82,8 +84,10 @@ class TestAdd(TestCase): self.assertEqual(out, "release 3.0\n") def test_escaped_quotes_are_preserved(self): - """Verify that escaped quotes are preserved""" - # Bug 917: escaping runs amok + """Verify that escaped quotes are preserved + + Bug 917: escaping runs amok + """ self.t("add one \\'two\\' three") self.t("add four \\\"five\\\" six")