tests: fix tests.

This commit is contained in:
Dylan Araps 2017-07-10 00:08:15 +10:00
parent 8b3b0be709
commit e9f491656e
1 changed files with 2 additions and 2 deletions

View File

@ -1891,7 +1891,7 @@ get_disk() {
IFS="$old_ifs"
# Stop here if 'df' fails to print disk info.
[[ -z "${disks[@]}" ]] && \
[[ -z "${disks[*]}" ]] && \
{ err "Disk: df failed to print the disks, make sure the disk_show array is set properly."; return; }
for disk in "${disks[@]}"; do
@ -4150,7 +4150,7 @@ exit 1
get_args() {
# Check the commandline flags early for '--config'.
[[ "$@" != *--config* ]] && get_user_config 2>/dev/null
[[ "$*" != *--config* ]] && get_user_config 2>/dev/null
while [[ "$1" ]]; do
case "$1" in