Skip to content

Commit 68d2ee8

Browse files
committed
Remove leading underscore.
1 parent fcd75db commit 68d2ee8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ def gate_unittests(args=[], subdir=""):
349349
mx.run(["python3"] + test_args, nonZeroIsFatal=True)
350350

351351

352-
def _run_python_unittests(python_binary, args=[], aot_compatible=True, exclude=[]):
352+
def run_python_unittests(python_binary, args=[], aot_compatible=True, exclude=[]):
353353
# tests root directory
354354
tests_folder = os.path.join(_suite.dir, "graalpython", "com.oracle.graal.python.test", "src", "tests")
355355

@@ -413,7 +413,7 @@ def graalpython_gate_runner(args, tasks):
413413
args = ["--python.CoreHome=%s" % os.path.join(_suite.dir, "graalpython", "lib-graalpython"),
414414
"--python.StdLibHome=%s" % os.path.join(_suite.dir, "graalpython", "lib-python/3"),
415415
llvm_home]
416-
_run_python_unittests(svm_image_name, args)
416+
run_python_unittests(svm_image_name, args)
417417

418418
with Task('GraalPython apptests', tasks, tags=[GraalPythonTags.apptests]) as task:
419419
if task:

0 commit comments

Comments
 (0)