From 415690ca23edd0a5bcdcb12823b80ea47822222c Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 11 Jul 2015 22:12:18 -0400 Subject: [PATCH] Test: Corrected report output - With rc.print.empty.columns now suppressing indicator formats, test that use the 'ls' report have different alignment. --- test/hyphenate.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/hyphenate.t b/test/hyphenate.t index 42ad33163..6588ff814 100755 --- a/test/hyphenate.t +++ b/test/hyphenate.t @@ -47,14 +47,14 @@ class TestHyphenation(TestCase): """Split on space instead of hyphenating""" self.t("add AAAAAAAAAA BBBBBBBBBB") code, out, err = self.t("ls") - self.assertIn("1 AAAAAAAAAA\n", out) + self.assertIn("1 AAAAAAAAAA\n", out) @unittest.expectedFailure def test_hyphenation(self): """Verify hyphenation in the absence of white space""" self.t("add AAAAAAAAAABBBBBBBBBBCCCCCCCCCC") code, out, err = self.t("ls") - self.assertIn("1 AAAAAAAAAABBBB-\n", out) + self.assertIn("1 AAAAAAAAAABBBB-\n", out) if __name__ == "__main__": from simpletap import TAPTestRunner