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/index.html | |
| parent | bca6c57534e654e1f2abc5d8419f253636c3491f (diff) | |
| download | python-coveragepy-e0ccb31492029204c8b2bb9e186fe8303df81d2e.tar.gz | |
Make the naming of Results attributes more consistent.
Diffstat (limited to 'coverage/htmlfiles/index.html')
| -rw-r--r-- | coverage/htmlfiles/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/coverage/htmlfiles/index.html b/coverage/htmlfiles/index.html index 1e11e9e..646851a 100644 --- a/coverage/htmlfiles/index.html +++ b/coverage/htmlfiles/index.html @@ -10,7 +10,7 @@ <div id='header'>
<div class='content'>
<h1>Coverage report:
- <span class='pc_cov'>{{totals.percent_covered|format_pct}}%</span>
+ <span class='pc_cov'>{{totals.pc_covered|format_pct}}%</span>
</h1>
</div>
</div>
@@ -31,23 +31,23 @@ <tr class='file'>
<td class='name'><a href='{{file.html_filename}}'>{{file.cu.name}}</a></td>
<td>{{file.nums.n_statements}}</td>
- <td>{{file.nums.n_run}}</td>
+ <td>{{file.nums.n_executed}}</td>
<td>{{file.nums.n_excluded}}</td>
{% if arcs %}
<td>{{file.par}}</td>
{% endif %}
- <td>{{file.nums.percent_covered|format_pct}}%</td>
+ <td>{{file.nums.pc_covered|format_pct}}%</td>
</tr>
{% endfor %}
<tr class='total'>
<td class='name'>Total</td>
<td>{{totals.n_statements}}</td>
-<td>{{totals.n_run}}</td>
+<td>{{totals.n_executed}}</td>
<td>{{totals.n_excluded}}</td>
{% if arcs %}
<td>{{total_par}}</td>
{% endif %}
-<td>{{totals.percent_covered|format_pct}}%</td>
+<td>{{totals.pc_covered|format_pct}}%</td>
</tr>
</table>
</div>
|
