diff options
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r-- | tests/test_plugins.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index 2129076a..fe43c4c0 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -408,7 +408,7 @@ class GoodPluginTest(FileTracerTest): self.start_import_stop(cov, "caller") repout = StringIO() - total = cov.report(file=repout, include=["*.html"], omit=["uni*.html"]) + total = cov.report(file=repout, include=["*.html"], omit=["uni*.html"], show_missing=True) report = repout.getvalue().splitlines() expected = [ 'Name Stmts Miss Branch BrPart Cover Missing', @@ -497,7 +497,7 @@ class GoodPluginTest(FileTracerTest): self.start_import_stop(cov, "unsuspecting") repout = StringIO() - total = cov.report(file=repout) + total = cov.report(file=repout, show_missing=True) report = repout.getvalue().splitlines() expected = [ 'Name Stmts Miss Cover Missing', |