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:
authorThomas Steur <tsteur@users.noreply.github.com>2019-02-25 11:45:14 +0300
committerStefan Giehl <stefan@matomo.org>2019-02-25 11:45:14 +0300
commitddd5ef0fca8efb873b909e81eaf469f73ad95150 (patch)
tree624cac0b1944027ebe0c4bcb0b251707894e5655 /tests/PHPUnit/Unit
parent2b3bb2c5afdea30b9fe160b16d7919c5f10f5ee3 (diff)
Tweak default tracker text that explains Matomo (#14107)
* Tweak default tracker text that explains Matomo Shown when no tracking request is sent to Matomo. cc @mattab * update tests
Diffstat (limited to 'tests/PHPUnit/Unit')
-rw-r--r--tests/PHPUnit/Unit/Tracker/ResponseTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Unit/Tracker/ResponseTest.php b/tests/PHPUnit/Unit/Tracker/ResponseTest.php
index b46fe10ee0..b27c16f327 100644
--- a/tests/PHPUnit/Unit/Tracker/ResponseTest.php
+++ b/tests/PHPUnit/Unit/Tracker/ResponseTest.php
@@ -127,7 +127,7 @@ class ResponseTest extends \PHPUnit_Framework_TestCase
$tracker->setCountOfLoggedRequests(0);
$this->response->outputResponse($tracker);
- $this->assertEquals("This resource is part of Matomo. Keep full control of your data with the leading free and open source <a href='https://matomo.org' target='_blank' rel='noopener noreferrer'>digital analytics platform</a> for web and mobile.",
+ $this->assertEquals("This resource is part of Matomo. Keep full control of your data with the leading free and open source <a href='https://matomo.org' target='_blank' rel='noopener noreferrer'>web analytics & conversion optimisation platform</a>.",
$this->response->getOutput());
}