summaryrefslogtreecommitdiff
path: root/tests/test_arcs.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r--tests/test_arcs.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py
index 36eb4faa..2fd033b8 100644
--- a/tests/test_arcs.py
+++ b/tests/test_arcs.py
@@ -273,14 +273,15 @@ class LoopArcTest(CoverageTest):
def test_bug_496_continue_in_constant_while(self):
# https://bitbucket.org/ned/coveragepy/issue/496
if env.PY3:
- arcz = ".1 12 23 34 43 45 5."
+ arcz = ".1 12 23 34 45 53 46 6."
else:
- arcz = ".1 12 2-1 23 34 42 45 5."
+ arcz = ".1 12 2-1 23 34 45 52 46 6."
self.check_coverage("""\
up = iter('ta')
while True:
char = next(up)
- if char == 't': continue
+ if char == 't':
+ continue
break
""",
arcz=arcz