diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-03-13 10:35:28 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-03-13 10:35:28 -0400 |
commit | b5b29ec13a62548645b3dd9ed527f1f6209d1230 (patch) | |
tree | b503e45835134d9b403541bd5dc5d5e08a97dfc8 /tests/test_oddball.py | |
parent | 46381f9c554260f56edef5b204c613a925f53618 (diff) | |
download | python-coveragepy-git-b5b29ec13a62548645b3dd9ed527f1f6209d1230.tar.gz |
Private attributes should be indicated
Diffstat (limited to 'tests/test_oddball.py')
-rw-r--r-- | tests/test_oddball.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_oddball.py b/tests/test_oddball.py index aa2f333c..2a0b03c0 100644 --- a/tests/test_oddball.py +++ b/tests/test_oddball.py @@ -118,7 +118,7 @@ class RecursionTest(CoverageTest): cov = coverage.Coverage() self.start_import_stop(cov, "recur") - pytrace = (cov.collector.tracer_name() == "PyTracer") + pytrace = (cov._collector.tracer_name() == "PyTracer") expected_missing = [3] if pytrace: # pragma: no metacov expected_missing += [9, 10, 11] |