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 | cac60611433490b85e337be3c53299a9406fd098 (patch) | |
tree | ee544da31aaa8eca69014a86c82deb950a7ffca4 /coverage/python.py | |
parent | 6cda7f1fda3e087b1128b40d73fb4da8486b4b05 (diff) | |
download | python-coveragepy-git-cac60611433490b85e337be3c53299a9406fd098.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 59e6346a..0d2fb3b4 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): |