From 224b8865bf2885c3c1da015600ee723936034fc9 Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Mon, 24 Jan 2022 17:16:59 +0100 Subject: [PATCH] test: newlines for output when Y'ing & N'ing --- tests/integration/testfunctions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/testfunctions.sh b/tests/integration/testfunctions.sh index 39b1ae72..d23d1b5c 100644 --- a/tests/integration/testfunctions.sh +++ b/tests/integration/testfunctions.sh @@ -16,7 +16,7 @@ run_test () { else tempLogfile=$(mktemp) cmd=$(eval echo "$@") - echo "------------ INPUT -------------------" | tee -a $tempLogfile + echo -e "\\n------------ INPUT -------------------" | tee -a $tempLogfile echo "$" "$cmd" | tee -a $tempLogfile echo "------------ OUTPUT ------------------" | tee -a $tempLogfile eval $cmd 2>&1 | tee -a $tempLogfile