Skip to content

Commit

Permalink
use option method for PHPUnit options
Browse files Browse the repository at this point in the history
  • Loading branch information
boedah committed Feb 27, 2015
1 parent 367d1ae commit b4eb4cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RoboFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit b4eb4cd

Please sign in to comment.