Skip to content

Commit eb32a82

Browse files
committed
don't use f-strings yet
1 parent 96880d6 commit eb32a82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def run_cpython_test(args):
237237
globs.append(arg)
238238
testfiles = []
239239
for g in globs:
240-
testfiles += glob.glob(os.path.join(SUITE.dir, "graalpython/lib-python/3/test", f"{g}*"))
240+
testfiles += glob.glob(os.path.join(SUITE.dir, "graalpython/lib-python/3/test", "%s*" % g))
241241
mx.run([python_gvm()] + interp_args + [
242242
os.path.join(SUITE.dir, "graalpython/com.oracle.graal.python.test/src/tests/run_cpython_test.py"),
243243
] + test_args + testfiles)

0 commit comments

Comments
 (0)