diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-08 09:54:24 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-08 09:54:24 -0500 |
commit | 429d6ecbc19bf4e742170828e0433481ee0d3b19 (patch) | |
tree | 81305a30496855756ef01237518a532d3bca1279 /coverage/python.py | |
parent | f0eb7f779f14cce5fc34581439c25cfa5c13d23a (diff) | |
download | python-coveragepy-429d6ecbc19bf4e742170828e0433481ee0d3b19.tar.gz |
missing_arc_description is better than arc_destination_description. One test broken.
Diffstat (limited to 'coverage/python.py')
-rw-r--r-- | coverage/python.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/python.py b/coverage/python.py index 59e6346..0d2fb3b 100644 --- a/coverage/python.py +++ b/coverage/python.py @@ -165,8 +165,8 @@ class PythonFileReporter(FileReporter): def exit_counts(self): return self.parser.exit_counts() - def arc_destination_description(self, lineno): - return self.parser.arc_destination_description(lineno) + def missing_arc_description(self, start, end): + return self.parser.missing_arc_description(start, end) @contract(returns='unicode') def source(self): |