Skip to content

Commit

Permalink
[run.d] add space between commands for failed unittest (#20628)
Browse files Browse the repository at this point in the history
  • Loading branch information
thewilsonator authored Dec 31, 2024
1 parent da1b69a commit 9c4694f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/test/run.d
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9c4694f

Please sign in to comment.