From bb348cc343d611099ba6769c9de518666b1be54c Mon Sep 17 00:00:00 2001 From: Jared Whiklo Date: Wed, 14 Oct 2020 13:42:53 -0500 Subject: [PATCH] fix types variable --- .scripts/run-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.scripts/run-tests.sh b/.scripts/run-tests.sh index 1f337c7f..25cf316e 100755 --- a/.scripts/run-tests.sh +++ b/.scripts/run-tests.sh @@ -3,8 +3,8 @@ # Wrapper for the test executing function so we only have to change it in one place. # The module name gets passed in as a command line arg. if [ "$1" == "unit" ]; then - TYPE="--type=IslandoraKernelTestBase" + TYPE="--types \"IslandoraKernelTestBase\"" elif [ "$1" == "functional" ]; then - TYPE="--type=IslandoraFunctionalTestBase,WebDriverTestBase" + TYPE="--types \"IslandoraFunctionalTestBase,WebDriverTestBase\"" fi php core/scripts/run-tests.sh --suppress-deprecations --concurrency 2 --url http://127.0.0.1:8282 --verbose --php `which php` --module "$2" $TYPE