Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <benaka@piwik.pro>2015-03-16 22:40:46 +0300
committerdiosmosis <benaka@piwik.pro>2015-03-16 22:40:46 +0300
commitb8ac08d00b3a96015444e750ee25231bd49dfea0 (patch)
tree6155bbab3d2677823e297e428b39edbba08a42da /plugins
parentbc561137c99cecbaa3b14a44a2dc259be38c778e (diff)
Debugging travis build failure.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CoreUpdater/tests/Integration/Commands/UpdateTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CoreUpdater/tests/Integration/Commands/UpdateTest.php b/plugins/CoreUpdater/tests/Integration/Commands/UpdateTest.php
index ac3ced75ac..cb5dca71fe 100644
--- a/plugins/CoreUpdater/tests/Integration/Commands/UpdateTest.php
+++ b/plugins/CoreUpdater/tests/Integration/Commands/UpdateTest.php
@@ -53,7 +53,7 @@ class UpdateTest extends ConsoleCommandTestCase
'--yes' => true
));
- $this->assertEquals(0, $result);
+ $this->assertEquals(0, $result, $this->getCommandDisplayOutputErrorMessage());
$this->assertDryRunExecuted($this->applicationTester->getDisplay());
@@ -71,7 +71,7 @@ class UpdateTest extends ConsoleCommandTestCase
'command' => 'core:update'
));
- $this->assertEquals(0, $result);
+ $this->assertEquals(0, $result, $this->getCommandDisplayOutputErrorMessage());
$this->assertDryRunExecuted($this->applicationTester->getDisplay());
@@ -88,7 +88,7 @@ class UpdateTest extends ConsoleCommandTestCase
'--yes' => true
));
- $this->assertEquals(0, $result);
+ $this->assertEquals(0, $result, $this->getCommandDisplayOutputErrorMessage());
// check no update occurred
$this->assertContains("Everything is already up to date.", $this->applicationTester->getDisplay());