diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/helpers.py | 2 | ||||
-rw-r--r-- | tests/test_summary.py | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/tests/helpers.py b/tests/helpers.py index cfea8f3c..3d6be141 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -6,8 +6,6 @@ import subprocess -# This isn't really a backward compatibility thing, should be moved into a -# helpers file or something. def run_command(cmd): """Run a command in a sub-process. diff --git a/tests/test_summary.py b/tests/test_summary.py index 16a4c579..eb31d824 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -94,9 +94,7 @@ class SummaryTest(CoverageTest): # Try reporting while omitting some modules self.make_mycode() self.run_command("coverage run mycode.py") - report = self.report_from_command( - "coverage report --omit '%s/*'" % HERE - ) + report = self.report_from_command("coverage report --omit '%s/*'" % HERE) # Name Stmts Miss Cover # ------------------------------- |