Skip to content

Commit

Permalink
Remove unnecessary "Running" from progress output.
Browse files Browse the repository at this point in the history
  • Loading branch information
cgay committed Oct 10, 2023
1 parent 669b0dc commit 199e267
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions run.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ define method show-progress
$reset-text-attributes,
result.result-time)
else
test-output("Running suite %=%s%=:\n",
test-output("Suite %=%s%=:\n",
$component-name-text-attributes,
suite.component-name,
$reset-text-attributes);
Expand Down Expand Up @@ -438,8 +438,12 @@ define method show-progress
format-bytes(result.result-bytes));
reason & test-output(" %s\n", reason);
else
test-output("Running %s %=%s%=:%s",
test.component-type-name,
test-output("%s %=%s%=:%s",
if (instance?(test, <benchmark>))
"Benchmark"
else
"Test"
end,
$component-name-text-attributes,
test.component-name,
$reset-text-attributes,
Expand Down

0 comments on commit 199e267

Please sign in to comment.