summaryrefslogtreecommitdiff
path: root/tests/test_plugins.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-12-08 07:07:16 -0500
committerNed Batchelder <ned@nedbatchelder.com>2022-12-08 07:40:23 -0500
commit71050957c68a7e1eaece7134be256535173e9b85 (patch)
treed1a3ddf4878599479f51a5d9af5058e5aa059e5d /tests/test_plugins.py
parent4bca0478723434ab16582f94840cb38fa6878cd8 (diff)
downloadpython-coveragepy-git-nedbat/picklable.tar.gz
refactor: don't hold data so that Analysis can be picklednedbat/picklable
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r--tests/test_plugins.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py
index cd446441..a01904b2 100644
--- a/tests/test_plugins.py
+++ b/tests/test_plugins.py
@@ -395,8 +395,8 @@ class GoodFileTracerTest(FileTracerTest):
analysis = cov._analyze("foo_7.html")
assert analysis.statements == {1, 2, 3, 4, 5, 6, 7}
# Plugins don't do branch coverage yet.
- assert analysis.has_arcs() is True
- assert analysis.arc_possibilities() == []
+ assert analysis.has_arcs is True
+ assert analysis.arc_possibilities == []
assert analysis.missing == {1, 2, 3, 6, 7}