diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-30 18:07:36 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-30 18:35:09 -0500 |
commit | 45787e29dea3a41f2e9570b66a571a7ebcda4592 (patch) | |
tree | 7eeadde7d7a033e27abd1df7411bb525bd711148 /tests/test_arcs.py | |
parent | 85c7a4ac4161c4eb2efeaf07e6f833d3a073b018 (diff) | |
download | python-coveragepy-git-45787e29dea3a41f2e9570b66a571a7ebcda4592.tar.gz |
refactor: removed mentions of Jython and IronPython
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r-- | tests/test_arcs.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py index 1d20470f..4c68abba 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -157,13 +157,9 @@ class SimpleArcTest(CoverageTest): ) def test_what_is_the_sound_of_no_lines_clapping(self): - if env.JYTHON: - # Jython reports no lines for an empty file. - arcz_missing=".1 1." # pragma: only jython - elif env.PYBEHAVIOR.empty_is_empty: + if env.PYBEHAVIOR.empty_is_empty: arcz_missing=".1 1." else: - # Other Pythons report one line. arcz_missing="" self.check_coverage("""\ # __init__.py |