summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-08-19 13:29:19 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2015-08-19 13:29:19 +0200
commita95ca971efa08d37fbd7a5b72003c7c79ffac687 (patch)
tree97cd800feced8d03dc0e8ddf55ee0b38a7e4f4c7
parentb19c0b42fa1d6b87b16c4f6b3b8030ca8240466a (diff)
better php 7 compatibility
-rw-r--r--tests/integration/command/CommandTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/command/CommandTest.php b/tests/integration/command/CommandTest.php
index c2f15a72c..0ef2fbab2 100644
--- a/tests/integration/command/CommandTest.php
+++ b/tests/integration/command/CommandTest.php
@@ -33,7 +33,7 @@ class CommandTest extends \PHPUnit_Framework_TestCase {
public function testCronUpdate() {
$command = 'php -f ' . $this->corePath . 'cron.php';
- exec($command, $_, $success);
+ exec($command, $output, $success);
$this->assertSame(0, $success);
}