diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-13 20:00:13 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-13 20:00:13 -0500 |
commit | b8647caaa2b3b4d28c528d42c38c0a39bd467536 (patch) | |
tree | a69da94438334e1da4e520b341b74b981516e185 /tests/test_arcs.py | |
parent | de242a2676b7f0605bd536a07e5faddef79aae2e (diff) | |
download | python-coveragepy-git-b8647caaa2b3b4d28c528d42c38c0a39bd467536.tar.gz |
Fine-tune the 3.7 decisions
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r-- | tests/test_arcs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py index 2111c9bc..ef71ea16 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: |