diff options
Diffstat (limited to 'tests/test_lcov.py')
-rw-r--r-- | tests/test_lcov.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_lcov.py b/tests/test_lcov.py index 95bc5fee..30065a8d 100644 --- a/tests/test_lcov.py +++ b/tests/test_lcov.py @@ -46,7 +46,7 @@ class LcovTest(CoverageTest): self.assertAlmostEqual(cuboid_volume(5.5),166.375) """) - def get_lcov_report_content(self, filename: str="coverage.lcov") -> str: + def get_lcov_report_content(self, filename: str = "coverage.lcov") -> str: """Return the content of an LCOV report.""" with open(filename, "r") as file: return file.read() |