[run.d] add space between commands for failed unittest (#20628)

This commit is contained in:
Nicholas Wilson 2024-12-31 10:48:37 +08:00 committed by GitHub
parent da1b69af37
commit 9c4694fc11
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -199,7 +199,7 @@ Options:
{
const string name = target.filename
? target.normalizedTestName
: "`unit` tests: " ~ (cast(string)unitTestRunnerCommand) ~ join(target.args, " ");
: "`unit` tests: " ~ (cast(string)unitTestRunnerCommand) ~ " " ~ join(target.args, " ");
writeln(">>> TARGET FAILED: ", name);
synchronized failedTargets ~= name;