diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2018-07-08 16:34:48 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-07-08 16:34:48 -0400 |
| commit | b7ca9039c68fefff93f8c787f0c1589e097c8e4f (patch) | |
| tree | 354662b80c20ee4dda79fcd480d0db3da2d3234e /tests/test_summary.py | |
| parent | b6242f45e29d63b62989a48d1097e1c30bf22eaf (diff) | |
| download | python-coveragepy-git-b7ca9039c68fefff93f8c787f0c1589e097c8e4f.tar.gz | |
Be stricter about self._data
Diffstat (limited to 'tests/test_summary.py')
| -rw-r--r-- | tests/test_summary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py index adc1fcfa..b2895370 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -771,7 +771,7 @@ class TestSummaryReporterConfiguration(CoverageTest): cov = Coverage() cov.start() cov.stop() # pragma: nested - cov.data = coverage_data + cov._data = coverage_data printer = SummaryReporter(cov, options) destination = StringIO() printer.report([], destination) |
