summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-01-13 20:00:13 -0500
committerNed Batchelder <ned@nedbatchelder.com>2018-01-13 20:00:13 -0500
commit3087929f4b2ef91950e31e4ec76e77210bb34e79 (patch)
tree401dda55d4c3cb21c1d8d5763a4eb4e05cb00c6a /tests
parente2d74b02a1e08e58ddd797b289d002d95e6ec2c1 (diff)
downloadpython-coveragepy-3087929f4b2ef91950e31e4ec76e77210bb34e79.tar.gz
Fine-tune the 3.7 decisions
Diffstat (limited to 'tests')
-rw-r--r--tests/test_arcs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py
index 2111c9b..ef71ea1 100644
--- a/tests/test_arcs.py
+++ b/tests/test_arcs.py
@@ -1123,7 +1123,7 @@ class OptimizedIfTest(CoverageTest):
arcz=".1 12 24 41 26 61 1.",
)
# Before 3.7, no Python optimized away "if not __debug__:"
- if env.PYVERSION < (3, 7):
+ if env.PYVERSION < (3, 7, 0, 'alpha', 4):
arcz = ".1 12 23 31 34 41 26 61 1."
arcz_missing = "34 41"
else: