From c017f03bbfc7ea257f43bea5003e681614e4990e Mon Sep 17 00:00:00 2001 From: Chemaclass Date: Thu, 5 Dec 2024 23:41:10 +0100 Subject: [PATCH] docs: update comment on runner.sh --- src/runner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runner.sh b/src/runner.sh index 39c589f6..67706e04 100755 --- a/src/runner.sh +++ b/src/runner.sh @@ -188,7 +188,7 @@ function runner::run_test() { type="${type#[}" # Remove the leading "[" local line="${subshell_output#*]}" # Remove everything before and including "]" - # Replace [failed] with a newline to split failure messages + # Replace [type] with a newline to split the messages line=$(echo "$line" | sed -e 's/\[failed\]/\n/g' \ -e 's/\[skipped\]/\n/g' \ -e 's/\[incomplete\]/\n/g')