diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-11-06 15:52:15 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-11-06 16:16:04 -0500 |
commit | 9c26c9580b95c782614397a218f8730169fffc12 (patch) | |
tree | f6a86e88541e008dcaf2b075b2e60e2617681966 /tests/test_plugins.py | |
parent | 556344babd5210c093eba547d1b15489843f4359 (diff) | |
download | python-coveragepy-git-9c26c9580b95c782614397a218f8730169fffc12.tar.gz |
refactor: remove mention of Python 2 unicode
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r-- | tests/test_plugins.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index b4239700..cd446441 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -343,9 +343,6 @@ class GoodFileTracerTest(FileTracerTest): # quux_5.html will be omitted from the results. assert render("quux_5.html", 3) == "[quux_5.html @ 3]" - - # For Python 2, make sure unicode is working. - assert render(u"uni_3.html", 2) == "[uni_3.html @ 2]" """) # will try to read the actual source files, so make some @@ -382,11 +379,6 @@ class GoodFileTracerTest(FileTracerTest): assert "quux_5.html" not in line_counts(cov.get_data()) - _, statements, missing, _ = cov.analysis("uni_3.html") - assert statements == [1, 2, 3] - assert missing == [1] - assert "uni_3.html" in line_counts(cov.get_data()) - def test_plugin2_with_branch(self): self.make_render_and_caller() |