diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1480,10 +1480,8 @@ if expected.get(pos, None): els = expected[pos] - i = 0 optional = [] - while i < len(els): - el = els[i] + for i, el in enumerate(els): r = self.linematch(el, lout) if isinstance(r, str): @@ -1512,8 +1510,6 @@ if not self._iftest(conditions): optional.append(i) - i += 1 - if r: if r == "retry": continue