Skip to content

Commit c2004a0

Browse files
committed
Print function qualname in graalpytest
1 parent 6c90027 commit c2004a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test/src/graalpytest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def get_useful_frame(self, tb):
329329
def run_safely(self, func, print_immediately=False):
330330
if verbose:
331331
with print_lock:
332-
print(u"\n\t\u21B3 ", func.__name__, " ", end="", flush=True)
332+
print(u"\n\t\u21B3 ", func.__qualname__, " ", end="", flush=True)
333333

334334
if func.__code__ is Mark.xfail(func).__code__:
335335
return _skipped_marker

0 commit comments

Comments
 (0)