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 | 625415c2b0bd34a3c0efd814cc68108566c508e1 (patch) | |
tree | 840a6e64f6d8285f9393519973bba9eeeba057d6 /coverage/htmlfiles/pyfile.html | |
parent | 9680c1e57bc5d1f5d4e0d0c1a8f8a5725b3f4890 (diff) | |
download | python-coveragepy-git-625415c2b0bd34a3c0efd814cc68108566c508e1.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 5c9509bc..8ae27eab 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 %}
|