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:
authormattab <matthieu.aubry@gmail.com>2016-10-31 02:20:25 +0300
committermattab <matthieu.aubry@gmail.com>2016-10-31 02:20:25 +0300
commit395d447052b81ed98b7840df863ec183ed1e285d (patch)
tree90f8ea0cf3c385451a3ccb179f51ea36bb23dd3c /tests/PHPUnit/System/TrackerResponseTest.php
parentf656aec54870ba1ce690bcd589693dee70be789b (diff)
Better text + https link
Diffstat (limited to 'tests/PHPUnit/System/TrackerResponseTest.php')
-rwxr-xr-xtests/PHPUnit/System/TrackerResponseTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/PHPUnit/System/TrackerResponseTest.php b/tests/PHPUnit/System/TrackerResponseTest.php
index 337aceb30c..05f6b749c3 100755
--- a/tests/PHPUnit/System/TrackerResponseTest.php
+++ b/tests/PHPUnit/System/TrackerResponseTest.php
@@ -101,7 +101,7 @@ class TrackerResponseTest extends SystemTestCase
$url = Fixture::getTrackerUrl();
$this->assertResponseCode(200, $url);
- $expected = "<a href='/'>Piwik</a> is a free/libre web <a href='http://piwik.org'>analytics</a> that lets you keep control of your data.";
+ $expected = "This resource is part of Piwik. Keep full control of your data with the leading free and open source <a href='https://piwik.org' target='_blank'>digital analytics platform</a> for web and mobile.";
$this->assertHttpResponseText($expected, $url);
}
@@ -110,7 +110,7 @@ class TrackerResponseTest extends SystemTestCase
$url = Fixture::getTrackerUrl();
$this->assertResponseCode(400, $url . '?rec=1');
- $expected = "<a href='/'>Piwik</a> is a free/libre web <a href='http://piwik.org'>analytics</a> that lets you keep control of your data.";
+ $expected = "This resource is part of Piwik. Keep full control of your data with the leading free and open source <a href='https://piwik.org' target='_blank'>digital analytics platform</a> for web and mobile.";
$this->assertHttpResponseText($expected, $url);
}