1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

tests: mixes string and array

Argument mixes string and array. Use * or separate argument
This commit is contained in:
Zdenek Kabelac 2017-07-07 21:24:17 +02:00
parent 4e2fd6f6ab
commit ec05890026

View File

@ -63,7 +63,7 @@ sel() {
# the number of lines on output must match
test "$items_found" -eq $# || {
echo " >>> NUMBER OF ITEMS EXPECTED: $# ($@)"
echo " >>> NUMBER OF ITEMS EXPECTED: $#" "$@"
echo " >>> NUMBER OF ITEMS FOUND: $items_found ($(< $OUT_LOG_FILE))"
return 1
}