Skip to content

Commit a9cf853

Browse files
committed
Fix format
1 parent 481fd78 commit a9cf853

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/test-e2e/lit.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ def open_check_file(file_name):
597597
if "amdgcn" in sp[1]:
598598
config.sycl_build_targets.add("target-amd")
599599

600-
cmd = ("{} {}".format(config.run_launcher, sycl_ls) if config.run_launcher else sycl_ls)
600+
cmd = "{} {}".format(config.run_launcher, sycl_ls) if config.run_launcher else sycl_ls
601601
sycl_ls_output = subprocess.check_output(cmd, text=True, shell=True)
602602

603603
# In contrast to `cpu` feature this is a compile-time feature, which is needed

0 commit comments

Comments
 (0)