diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-17 12:51:09 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-17 12:51:09 -0500 |
commit | 9b484ffa3f480889f6478d34d84987beddc08ba6 (patch) | |
tree | 94c89f650e3f2550aec42306adb9e685388f74a3 /tests/test_plugins.py | |
parent | 360c7725d4a82e5ad7b9ebc2e9aa459b39f5c2b4 (diff) | |
download | python-coveragepy-git-9b484ffa3f480889f6478d34d84987beddc08ba6.tar.gz |
Plain-text output no longer includes trailing spaces
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r-- | tests/test_plugins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index 54f26a7f..2129076a 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -416,7 +416,7 @@ class GoodPluginTest(FileTracerTest): 'bar_4.html 4 2 0 0 50% 1, 4', 'foo_7.html 7 5 0 0 29% 1-3, 6-7', '--------------------------------------------------------', - 'TOTAL 11 7 0 0 36% ', + 'TOTAL 11 7 0 0 36%', ] self.assertEqual(report, expected) self.assertAlmostEqual(total, 36.36, places=2) |