Skip to content

Commit a814484

Browse files
committed
fix test
1 parent d161910 commit a814484

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python.test/src/tests

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_for.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def test_else_break():
9898
else:
9999
iters += 1
100100
break
101-
assert iters == 2, "if the for-loop doesn't break, the else should be executed and break out of the outer loop"
101+
assert iters == 1, "if the for-loop doesn't break, the else should be executed and break out of the outer loop"
102102

103103

104104
def test_else_break_from_while():

0 commit comments

Comments
 (0)