diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-19 21:58:40 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-19 21:58:40 -0500 |
commit | 61a3f737c4edbcbcd9468d47bd8025613ed590f7 (patch) | |
tree | 90e1c309c88f58820a92344602e71dbd7b81cac2 /coverage/htmlfiles/index.html | |
parent | 83db34cf4273d80e2d987251b980244801379aff (diff) | |
download | python-coveragepy-61a3f737c4edbcbcd9468d47bd8025613ed590f7.tar.gz |
Branch coverage is computed more accurately, #156.
Diffstat (limited to 'coverage/htmlfiles/index.html')
-rw-r--r-- | coverage/htmlfiles/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/htmlfiles/index.html b/coverage/htmlfiles/index.html index 5a7c8c2..c649a83 100644 --- a/coverage/htmlfiles/index.html +++ b/coverage/htmlfiles/index.html @@ -69,7 +69,7 @@ <td>{{totals.n_excluded}}</td> {% if arcs %} <td>{{totals.n_branches}}</td> - <td>{{totals.n_missing_branches}}</td> + <td>{{totals.n_partial_branches}}</td> {% endif %} <td class='right'>{{totals.pc_covered_str}}%</td> </tr> @@ -83,7 +83,7 @@ <td>{{file.nums.n_excluded}}</td> {% if arcs %} <td>{{file.nums.n_branches}}</td> - <td>{{file.nums.n_missing_branches}}</td> + <td>{{file.nums.n_partial_branches}}</td> {% endif %} <td class='right'>{{file.nums.pc_covered_str}}%</td> </tr> |