From e17c107ba81ef44f87231a3ba7851ac46599c74f Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Sat, 26 Sep 2015 14:15:11 +0300 Subject: [PATCH] phpunit.php: Make lines shorter to make phpcs happier Change-Id: Ide48ca85912ab55184588a1144f9fdca7ad48227 --- tests/phpunit/phpunit.php | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/tests/phpunit/phpunit.php b/tests/phpunit/phpunit.php index af924a0c47..5591aa12cc 100755 --- a/tests/phpunit/phpunit.php +++ b/tests/phpunit/phpunit.php @@ -42,14 +42,28 @@ class PHPUnitMaintClass extends Maintenance { false, # not required false # no arg needed ); - $this->addOption( 'regex', 'Only run parser tests that match the given regex.', false, true ); + $this->addOption( + 'regex', + 'Only run parser tests that match the given regex.', + false, + true + ); $this->addOption( 'file', 'File describing parser tests.', false, true ); $this->addOption( 'use-filebackend', 'Use filebackend', false, true ); $this->addOption( 'use-bagostuff', 'Use bagostuff', false, true ); $this->addOption( 'use-jobqueue', 'Use jobqueue', false, true ); - $this->addOption( 'keep-uploads', 'Re-use the same upload directory for each test, don\'t delete it.', false, false ); + $this->addOption( + 'keep-uploads', + 'Re-use the same upload directory for each test, don\'t delete it.', + false, + false + ); $this->addOption( 'use-normal-tables', 'Use normal DB tables.', false, false ); - $this->addOption( 'reuse-db', 'Init DB only if tables are missing and keep after finish.', false, false ); + $this->addOption( + 'reuse-db', 'Init DB only if tables are missing and keep after finish.', + false, + false + ); } public function finalSetup() { -- 2.20.1