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/html.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/html.py')
-rw-r--r-- | coverage/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/html.py b/coverage/html.py index 19898cbe..5b792c7e 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -220,7 +220,7 @@ class HtmlReporter(Reporter): shorts.append("exit") else: shorts.append(b) - longs.append(fr.arc_destination_description(b)) + longs.append(fr.missing_arc_description(lineno, b)) # 202F is NARROW NO-BREAK SPACE. # 219B is RIGHTWARDS ARROW WITH STROKE. short_fmt = "%s ↛ %s" |