From 59f17c48abd54020eff2b171f1613ca9e2c19fa9 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 1 Mar 2021 00:50:02 +0100 Subject: [PATCH] Don't force value for args ending with 'user' to package_check, because most of the time that's in fact breaking tests --- lib/tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tests.sh b/lib/tests.sh index ddc0f8b..e2fb2de 100644 --- a/lib/tests.sh +++ b/lib/tests.sh @@ -49,9 +49,9 @@ _INSTALL_APP () { # Make sure we have a trailing & because that assumption is used in some sed regex later [[ ${install_args: -1} == '&' ]] || install_args+="&" - # We have default values for domain, user and is_public, but these + # We have default values for domain, admin and is_public, but these # may still be overwritten by the args ($@) - for arg_override in "domain=$SUBDOMAIN" "admin=$TEST_USER" "user=$TEST_USER" "is_public=1" "$@" + for arg_override in "domain=$SUBDOMAIN" "admin=$TEST_USER" "is_public=1" "$@" do key="$(echo $arg_override | cut -d '=' -f 1)" value="$(echo $arg_override | cut -d '=' -f 2-)"