diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-01-24 10:28:44 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-01-24 10:28:44 -0500 |
commit | a0d709fc20142b5fe08d16efa80d34500969fb2d (patch) | |
tree | 6f7428ffd2f0113962f8f4e7c7919a6f55eb3515 /tests/test_cmdline.py | |
parent | 70818633d97eabd24bfde567a61a684f044ed54d (diff) | |
download | python-coveragepy-a0d709fc20142b5fe08d16efa80d34500969fb2d.tar.gz |
Make the two forms of debug output more uniform
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r-- | tests/test_cmdline.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py index 266cb95..ebf5ab5 100644 --- a/tests/test_cmdline.py +++ b/tests/test_cmdline.py @@ -229,7 +229,7 @@ class CmdLineTest(BaseCmdLineTest): ) self.command_line("debug data", _covpkg=fake) self.assertMultiLineEqual(self.stdout(), textwrap.dedent("""\ - -- data --------------------------------------- + -- data ------------------------------------------------------ path: FILENAME has_arcs: False @@ -242,7 +242,7 @@ class CmdLineTest(BaseCmdLineTest): fake = FakeCoverageForDebugData(summary={}) self.command_line("debug data", _covpkg=fake) self.assertMultiLineEqual(self.stdout(), textwrap.dedent("""\ - -- data --------------------------------------- + -- data ------------------------------------------------------ path: FILENAME has_arcs: False No data collected |