Skip to content

Commit fe40743

Browse files
committed
Fix missing space between --cores argument and previous args
1 parent b6443cd commit fe40743

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DeeployTest/testUtils/testRunner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ def generate_test(self):
344344
command = f"python {generation_script} -d {self._dir_gen} -t {self._dir_test} -p {self._platform} {self.gen_args}"
345345

346346
if self._platform in ["Siracusa", "Siracusa_w_neureka"]:
347-
command += f"--cores={self._args.cores}"
347+
command += f" --cores={self._args.cores}"
348348

349349
command += self._argument_parser.generate_cmd_args()
350350

0 commit comments

Comments
 (0)