diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-10-14 08:25:23 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-10-14 08:50:42 -0400 |
commit | 42182f91c75ed8afdfc08812f60494958ef18d1e (patch) | |
tree | 318a321f7a975c7a113f911ba7f7a26c37c4fb8d /tests/test_html.py | |
parent | 168f1e75b31b654b1ea17edd95027a7d1845e3b2 (diff) | |
download | python-coveragepy-git-42182f91c75ed8afdfc08812f60494958ef18d1e.tar.gz |
Remove vestigial debugging
Diffstat (limited to 'tests/test_html.py')
-rw-r--r-- | tests/test_html.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_html.py b/tests/test_html.py index 95fcb181..93b969fe 100644 --- a/tests/test_html.py +++ b/tests/test_html.py @@ -1083,8 +1083,6 @@ class HtmlWithContextsTest(HtmlTestHelpers, CoverageTest): cov.set_option("html:show_contexts", True) mod = self.start_import_stop(cov, "two_tests") d = self.html_data_from_cov(cov, mod) - from coverage.debug import pp - pp(d) context_labels = [self.EMPTY, 'two_tests.test_one', 'two_tests.test_two'] expected_lines = [self.OUTER_LINES, self.TEST_ONE_LINES, self.TEST_TWO_LINES] for label, expected in zip(context_labels, expected_lines): |