diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-03 06:30:12 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-03 06:30:12 -0500 |
commit | e0ccb31492029204c8b2bb9e186fe8303df81d2e (patch) | |
tree | 5babbe0f63a89982b1bfe76e6d6ba504f14a2756 /coverage/htmlfiles/pyfile.html | |
parent | bca6c57534e654e1f2abc5d8419f253636c3491f (diff) | |
download | python-coveragepy-e0ccb31492029204c8b2bb9e186fe8303df81d2e.tar.gz |
Make the naming of Results attributes more consistent.
Diffstat (limited to 'coverage/htmlfiles/pyfile.html')
-rw-r--r-- | coverage/htmlfiles/pyfile.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/htmlfiles/pyfile.html b/coverage/htmlfiles/pyfile.html index 5c9509b..8ae27ea 100644 --- a/coverage/htmlfiles/pyfile.html +++ b/coverage/htmlfiles/pyfile.html @@ -23,11 +23,11 @@ function toggle_lines(btn, cls) { <div id='header'>
<div class='content'>
<h1>Coverage for <b>{{cu.name|escape}}</b> :
- <span class='pc_cov'>{{nums.percent_covered|format_pct}}%</span>
+ <span class='pc_cov'>{{nums.pc_covered|format_pct}}%</span>
</h1>
<h2 class='stats'>
{{nums.n_statements}} statements
- <span class='{{c_run.strip}}' onclick='toggle_lines(this, "run")'>{{nums.n_run}} run</span>
+ <span class='{{c_run.strip}}' onclick='toggle_lines(this, "run")'>{{nums.n_executed}} run</span>
<span class='{{c_exc.strip}}' onclick='toggle_lines(this, "exc")'>{{nums.n_excluded}} excluded</span>
<span class='{{c_mis.strip}}' onclick='toggle_lines(this, "mis")'>{{nums.n_missing}} missing</span>
{% if arcs %}
|