summaryrefslogtreecommitdiff
path: root/tests/test_process.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-12-31 18:52:23 -0500
committerNed Batchelder <ned@nedbatchelder.com>2019-12-31 18:52:23 -0500
commit5bb5da50b182583036b7808bb32f2c8c191d9d26 (patch)
tree43af3882f5a62cf0b6c2ed4f3165b57b202cb30e /tests/test_process.py
parent60a770964656bd45493417ee72bcdb280a7c0e07 (diff)
downloadpython-coveragepy-git-5bb5da50b182583036b7808bb32f2c8c191d9d26.tar.gz
Changing PYVERSION to six elements broke one equality comparison
Diffstat (limited to 'tests/test_process.py')
-rw-r--r--tests/test_process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py
index 3e12c108..1414de6c 100644
--- a/tests/test_process.py
+++ b/tests/test_process.py
@@ -857,7 +857,7 @@ class EnvironmentTest(CoverageTest):
self.assert_tryexecfile_output(expected, actual)
def test_coverage_run_dir_is_like_python_dir(self):
- if env.PYVERSION == (3, 5, 4, 'final', 0): # pragma: obscure
+ if env.PYVERSION == (3, 5, 4, 'final', 0, 0): # pragma: obscure
self.skipTest("3.5.4 broke this: https://bugs.python.org/issue32551")
with open(TRY_EXECFILE) as f:
self.make_file("with_main/__main__.py", f.read())