summaryrefslogtreecommitdiff
path: root/coverage/html.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/html.py')
-rw-r--r--coverage/html.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/coverage/html.py b/coverage/html.py
index 9471db93..d4fb7516 100644
--- a/coverage/html.py
+++ b/coverage/html.py
@@ -190,6 +190,7 @@ class HtmlReporter(Reporter):
if self.has_arcs:
missing_branch_arcs = analysis.missing_branch_arcs()
+ arcs_executed = analysis.arcs_executed()
# These classes determine which lines are highlighted by default.
c_run = "run hide_run"
@@ -219,7 +220,7 @@ class HtmlReporter(Reporter):
shorts.append("exit")
else:
shorts.append(b)
- longs.append(fr.missing_arc_description(lineno, b))
+ longs.append(fr.missing_arc_description(lineno, b, arcs_executed))
# 202F is NARROW NO-BREAK SPACE.
# 219B is RIGHTWARDS ARROW WITH STROKE.
short_fmt = "%s ↛ %s"