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:
authorNina Pypchenko <22447785+nina-py@users.noreply.github.com>2020-09-26 07:32:28 +0300
committerGitHub <noreply@github.com>2020-09-26 07:32:28 +0300
commita49ed63c5ae9db59d34fa21616d955a064599c6a (patch)
tree66ecadd7006e03226d31b40ad551720851dfd5c8 /plugins/CustomDimensions/tests/Commands/RemoveCustomDimensionTest.php
parent9967583d3368bb93a8f02e8d47a22db5c6353427 (diff)
Replaced 'Piwik' with 'Matomo' in console output (#16475)
Diffstat (limited to 'plugins/CustomDimensions/tests/Commands/RemoveCustomDimensionTest.php')
-rw-r--r--plugins/CustomDimensions/tests/Commands/RemoveCustomDimensionTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CustomDimensions/tests/Commands/RemoveCustomDimensionTest.php b/plugins/CustomDimensions/tests/Commands/RemoveCustomDimensionTest.php
index f277fc0034..0295381412 100644
--- a/plugins/CustomDimensions/tests/Commands/RemoveCustomDimensionTest.php
+++ b/plugins/CustomDimensions/tests/Commands/RemoveCustomDimensionTest.php
@@ -86,7 +86,7 @@ class RemoveCustomDimensionTest extends IntegrationTestCase
self::assertStringContainsString('Remove Custom Dimension at index 3 in scope action.', $result);
self::assertStringContainsString('Are you sure you want to perform this action?', $result);
self::assertStringContainsString('Starting to remove this Custom Dimension', $result);
- self::assertStringContainsString('Your Piwik is now configured for up to 4 Custom Dimensions in scope action.', $result);
+ self::assertStringContainsString('Your Matomo is now configured for up to 4 Custom Dimensions in scope action.', $result);
$logVisit = new LogTable(CustomDimensions::SCOPE_VISIT);
$this->assertSame(range(1,5), $logVisit->getInstalledIndexes());
@@ -111,7 +111,7 @@ class RemoveCustomDimensionTest extends IntegrationTestCase
self::assertStringContainsString('Remove Custom Dimension at index 2 in scope visit', $result);
self::assertStringContainsString('Are you sure you want to perform this action?', $result);
self::assertStringContainsString('Starting to remove this Custom Dimension', $result);
- self::assertStringContainsString('Your Piwik is now configured for up to 4 Custom Dimensions in scope visit.', $result);
+ self::assertStringContainsString('Your Matomo is now configured for up to 4 Custom Dimensions in scope visit.', $result);
$logVisit = new LogTable(CustomDimensions::SCOPE_VISIT);
$this->assertSame(array(1,3,4,5), $logVisit->getInstalledIndexes());