Fix the simplify test

The script was returning the wrong number of tests.
This commit is contained in:
Matthias Clasen
2019-05-05 15:21:58 +00:00
parent b4093e59ee
commit 4f6cc46278

View File

@@ -7,7 +7,7 @@ TEST_RESULT_DIR=${TEST_RESULT_DIR:-/tmp}
shopt -s nullglob
TESTS=( "$TEST_DATA_DIR"/*.ui )
echo "1..${#TESTS}"
echo "1..${#TESTS[*]}"
I=1
for t in ${TESTS[*]}; do