From b4eb4cde2e56b7f61b07cc5ef3abbdaa7db25025 Mon Sep 17 00:00:00 2001 From: Peter Gasser Date: Fri, 27 Feb 2015 23:27:52 +0100 Subject: [PATCH] use `option` method for PHPUnit options --- RoboFile.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RoboFile.php b/RoboFile.php index ccad0c0..ba196bf 100644 --- a/RoboFile.php +++ b/RoboFile.php @@ -8,11 +8,11 @@ public function test() { $this->stopOnFail(true); $this->taskPHPUnit() - ->arg('-v') - ->arg('-d error_reporting=-1') ->option('disallow-test-output') ->option('report-useless-tests') ->option('strict-coverage') + ->option('-v') + ->option('-d error_reporting=-1') ->arg('tests') ->run(); }