diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-03 07:38:35 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-03 07:38:35 -0500 |
| commit | fc1fca9b7f02548595506852e95205543af9ecf5 (patch) | |
| tree | 7546b92cbf186bce7e4581a0d3bf222b622f9d89 /tests/test_html.py | |
| parent | 13679ce18a20a5114529ab0db7624d96bddfc958 (diff) | |
| download | python-coveragepy-fc1fca9b7f02548595506852e95205543af9ecf5.tar.gz | |
Oops, this fixes a test too
Diffstat (limited to 'tests/test_html.py')
| -rw-r--r-- | tests/test_html.py | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/tests/test_html.py b/tests/test_html.py index 97a7c6a..d96804d 100644 --- a/tests/test_html.py +++ b/tests/test_html.py @@ -524,13 +524,16 @@ class HtmlGoldTests(CoverageGoldTest): (' <span class="nam">a</span> <span class="op">=</span> ' '<span class="num">3</span>'), '<span class="pc_cov">70%</span>', - ('<span class="annotate" title="Line 8 was executed, but never jumped to line 11">' - '8 ↛ 11 [?]</span>'), - ('<span class="annotate" title="Line 17 was executed, but never jumped ' - 'to the function exit">17 ↛ exit [?]</span>'), - ('<span class="annotate" title="Line 25 was executed, but never jumped ' - 'to line 26 or line 28">25 ↛ 26, ' - '25 ↛ 28 [?]</span>'), + ('<span class="annotate short">8 ↛ 11</span>' + '<span class="annotate long">Line 8 was executed, ' + 'but never jumped to line 11</span>'), + ('<span class="annotate short">17 ↛ exit</span>' + '<span class="annotate long">Line 17 was executed, ' + 'but never jumped to the function exit</span>'), + ('<span class="annotate short">25 ↛ 26, ' + '25 ↛ 28</span>' + '<span class="annotate long">Line 25 was executed, ' + 'but never jumped to line 26 or line 28</span'), ) contains( "out/b_branch/index.html", |
