From 8bf79db66a83b9be66469c8ca62a49831e72cffa Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 9 Nov 2019 12:08:22 +0100 Subject: [PATCH] Fixed typo --- bin/test/run-api-tests.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/test/run-api-tests.sh b/bin/test/run-api-tests.sh index 5d256c33..75a51387 100755 --- a/bin/test/run-api-tests.sh +++ b/bin/test/run-api-tests.sh @@ -10,11 +10,9 @@ vendor/bin/zend-expressive-swoole start -d sleep 2 vendor/bin/phpunit --order-by=random -c phpunit-api.xml --testdox --colors=always - -# Capture tests exit code testsExitCode=$? vendor/bin/zend-expressive-swoole stop # Exit this script with the same code as the tests. If tests failed, this script has to fail -exit testsExitCode +exit $testsExitCode