From b7ca9039c68fefff93f8c787f0c1589e097c8e4f Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 8 Jul 2018 16:34:48 -0400 Subject: Be stricter about self._data --- tests/test_summary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_summary.py') 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) -- cgit v1.2.1