Skip to content

Commit d161910

Browse files
committed
resolve name shadowing
1 parent 982b340 commit d161910

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
@@ -101,7 +101,7 @@ def test_else_break():
101101
assert iters == 2, "if the for-loop doesn't break, the else should be executed and break out of the outer loop"
102102

103103

104-
def test_else_break():
104+
def test_else_break_from_while():
105105
iters = 0
106106
while iters < 40:
107107
while iters < 10:

0 commit comments

Comments
 (0)