diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-11-05 15:35:22 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-11-05 15:35:22 -0400 |
commit | 3b3cc6959b3aa515915816c2159806fab570ceb9 (patch) | |
tree | 8c2964ea146ce654ea7346b1a86fc87d510f6015 /tests/test_summary.py | |
parent | 01d86775522ed67a246f2b17657e7a119cb6b8a1 (diff) | |
download | python-coveragepy-git-3b3cc6959b3aa515915816c2159806fab570ceb9.tar.gz |
refactor: use `format` wherever we can
Diffstat (limited to 'tests/test_summary.py')
-rw-r--r-- | tests/test_summary.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py index 3e77285a..3a14ee3c 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -419,8 +419,7 @@ class SummaryTest(UsingModulesMixin, CoverageTest): assert self.line_count(report) == 6, report squeezed = self.squeezed_lines(report) assert squeezed[5] == "1 file skipped due to complete coverage." - report = self.get_report(cov, squeeze=False, skip_covered=True, - output_format="markdown") + report = self.get_report(cov, squeeze=False, skip_covered=True, output_format="markdown") # | Name | Stmts | Miss | Branch | BrPart | Cover | # |---------- | -------: | -------: | -------: | -------: | -------: | # | **TOTAL** | **3** | **0** | **0** | **0** | **100%** | |