From 199e267c654cb1d89b13ce56fb14b1f8e04f7389 Mon Sep 17 00:00:00 2001 From: Carl Gay Date: Tue, 10 Oct 2023 06:20:32 +0000 Subject: [PATCH] Remove unnecessary "Running" from progress output. --- run.dylan | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/run.dylan b/run.dylan index e90229a..331b65e 100644 --- a/run.dylan +++ b/run.dylan @@ -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); @@ -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" + else + "Test" + end, $component-name-text-attributes, test.component-name, $reset-text-attributes,