From cac60611433490b85e337be3c53299a9406fd098 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 8 Feb 2016 09:54:24 -0500 Subject: missing_arc_description is better than arc_destination_description. One test broken. --- coverage/python.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coverage/python.py') 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): -- cgit v1.2.1