Cosmetics

This commit is contained in:
Alexandre Aubin 2020-12-25 16:08:36 +01:00
parent 17f4e3f546
commit 9f26e6c8e0
2 changed files with 3 additions and 3 deletions

View file

@ -99,7 +99,7 @@ _LOAD_SNAPSHOT_OR_INSTALL_APP () {
&& CREATE_LXC_SNAPSHOT $snapname && CREATE_LXC_SNAPSHOT $snapname
else else
# Or uses an existing snapshot # Or uses an existing snapshot
log_info "(Reusing an existing snapshot $snapname.)" \ log_info "(Reusing existing snapshot $snapname)" \
&& LOAD_LXC_SNAPSHOT $snapname && LOAD_LXC_SNAPSHOT $snapname
fi fi
} }

View file

@ -367,12 +367,12 @@ start_test () {
local current_test_serie=$(jq -r '.test_serie' $testfile) local current_test_serie=$(jq -r '.test_serie' $testfile)
[[ "$current_test_serie" != "default" ]] \ [[ "$current_test_serie" != "default" ]] \
&& current_test_serie="($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) 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 # Increment the value of the current test
current_test_number=$((current_test_number+1)) current_test_number=$((current_test_number+1))