diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-07-04 17:15:38 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-07-06 10:04:31 -0400 |
commit | cfdcacea473dede9fb779256c812ff6a098a0714 (patch) | |
tree | 89a05ea92b2048a6b0653b8f4aae8fb374e4a4ec /tests/test_html.py | |
parent | 25aff80d444a6b1fa87173ffd8026f69be7ae0d0 (diff) | |
download | python-coveragepy-git-cfdcacea473dede9fb779256c812ff6a098a0714.tar.gz |
HTML: Mark things to show instead of to hide.
Also made some other changes along the way:
* Scroll bar markers change as the selected categories change.
* We don't use css class 'stm' for anything, get rid of it.
* Better sass use all around.
Diffstat (limited to 'tests/test_html.py')
-rw-r--r-- | tests/test_html.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_html.py b/tests/test_html.py index 4509e52f..8e9430ce 100644 --- a/tests/test_html.py +++ b/tests/test_html.py @@ -922,12 +922,12 @@ assert len(math) == 18 compare_html(gold_path("html/partial"), "out") contains( "out/partial_py.html", - '<p id="t4" class="stm par run hide_run">', - '<p id="t7" class="stm run hide_run">', + '<p id="t4" class="par run show_par">', + '<p id="t7" class="run">', # The "if 0" and "if 1" statements are optimized away. '<p id="t10" class="pln">', # The "raise AssertionError" is excluded by regex in the .ini. - '<p id="t17" class="exc">', + '<p id="t17" class="exc show_exc">', ) contains( "out/index.html", |