Skip to content

Commit f45909e

Browse files
committed
Fixed undefined variable
1 parent b7c827a commit f45909e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def parse_unittest_output(output):
208208

209209
# n.b.: we add a '*' in the front, so that unittests doesn't add
210210
# its own asterisks, because now this is already a pattern
211-
for funcname, classname, result in parse_unittest_output(stderr):
211+
for funcname, classname, result in parse_unittest_output(p.stderr):
212212
# We consider skipped tests as passing in order to avoid a situation where a Linux run
213213
# untags a Darwin-only test and vice versa
214214
if result == 'ok' or result.startswith('skipped'):

0 commit comments

Comments
 (0)