From 9f26e6c8e020371ed4205ad244bad6e5e2214dcd Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 25 Dec 2020 16:08:36 +0100 Subject: [PATCH] Cosmetics --- lib/tests.sh | 2 +- lib/tests_coordination.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/tests.sh b/lib/tests.sh index 1a913bb..4ff05fe 100644 --- a/lib/tests.sh +++ b/lib/tests.sh @@ -99,7 +99,7 @@ _LOAD_SNAPSHOT_OR_INSTALL_APP () { && CREATE_LXC_SNAPSHOT $snapname else # Or uses an existing snapshot - log_info "(Reusing an existing snapshot $snapname.)" \ + log_info "(Reusing existing snapshot $snapname)" \ && LOAD_LXC_SNAPSHOT $snapname fi } diff --git a/lib/tests_coordination.sh b/lib/tests_coordination.sh index d6b646f..abe3f9c 100644 --- a/lib/tests_coordination.sh +++ b/lib/tests_coordination.sh @@ -367,12 +367,12 @@ start_test () { local current_test_serie=$(jq -r '.test_serie' $testfile) [[ "$current_test_serie" != "default" ]] \ - && current_test_serie="($current_test_serie)" \ + && current_test_serie="($current_test_serie) " \ || current_test_serie="" total_number_of_test=$(ls $TEST_CONTEXT/tests/*.json | wc -l) - log_title "$current_test_serie $1 [Test $current_test_number/$total_number_of_test]" + log_title " [Test $current_test_number/$total_number_of_test] $current_test_serie$1" # Increment the value of the current test current_test_number=$((current_test_number+1))