Skip to content

Commit ce6d048

Browse files
committed
py2 fix in run_tests.py
1 parent 472280d commit ce6d048

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/run_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ def main():
563563
file_dir = os.path.dirname(os.path.abspath(__file__))
564564
command = [
565565
"env", "-i", "bash",
566-
"-c", f"source {file_dir}/sanitizer_suppressions.sh >/dev/null && env"
566+
"-c", "source {}/sanitizer_suppressions.sh >/dev/null && env".format(file_dir)
567567
]
568568
process = subprocess.Popen(command, stdout=subprocess.PIPE)
569569
for line in process.stdout:

0 commit comments

Comments
 (0)