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
path: root/tests
diff options
context:
space:
mode:
authordiosmosis <diosmosis@users.noreply.github.com>2019-02-11 02:12:20 +0300
committerGitHub <noreply@github.com>2019-02-11 02:12:20 +0300
commitc67317737aa08f1b5b3d626b4a3aeb8b626dbfde (patch)
treec9abdaabb86f7dd176675a7c0204335f4ec9af1f /tests
parentf768274396fba6aaaa7862a16787b702d01cb40a (diff)
Include non-sql migrations in update dry run output. (#14003)
* Include non-sql migrations in update dry run output. * More translation updates. * Make check for by domain Matomo more robust. * Show migrations in separate boxes based on whether they are SQL or console commands. * Update two screenshots and fix test.
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/Integration/Updater/Migration/Plugin/FactoryTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Integration/Updater/Migration/Plugin/FactoryTest.php b/tests/PHPUnit/Integration/Updater/Migration/Plugin/FactoryTest.php
index 13336b5d4d..1ca80eb4e1 100644
--- a/tests/PHPUnit/Integration/Updater/Migration/Plugin/FactoryTest.php
+++ b/tests/PHPUnit/Integration/Updater/Migration/Plugin/FactoryTest.php
@@ -44,7 +44,7 @@ class FactoryTest extends IntegrationTestCase
{
$migration = $this->factory->activate($this->pluginName);
- $this->assertSame('Activating plugin "MyTestPluginName"', '' . $migration);
+ $this->assertSame('./console plugin:activate "MyTestPluginName"', '' . $migration);
}
}