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:
authorStefan Weil <sw@weilnetz.de>2016-05-12 23:58:14 +0300
committerStefan Weil <sw@weilnetz.de>2016-05-12 23:58:14 +0300
commita1cf31cf9a71b3cf49c06dcf05e1d21161112295 (patch)
treeb71617383c42efd17db66c8062eefa1574115f6e /plugins/SitesManager/tests
parentf2a93e2583f282d7a080c837e0469b4e1468a066 (diff)
plugins: Fix typos (found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'plugins/SitesManager/tests')
-rw-r--r--plugins/SitesManager/tests/Integration/ApiTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/SitesManager/tests/Integration/ApiTest.php b/plugins/SitesManager/tests/Integration/ApiTest.php
index 3b26d215cb..0efdc0268d 100644
--- a/plugins/SitesManager/tests/Integration/ApiTest.php
+++ b/plugins/SitesManager/tests/Integration/ApiTest.php
@@ -533,7 +533,7 @@ class ApiTest extends IntegrationTestCase
$sites = API::getInstance()->getSitesWithAdminAccess();
- // we dont test the ts_created
+ // we don't test the ts_created
unset($sites[0]['ts_created']);
unset($sites[1]['ts_created']);
$this->assertEquals($resultWanted, $sites);
@@ -642,7 +642,7 @@ class ApiTest extends IntegrationTestCase
FakeAccess::setIdSitesAdmin(array());
$sites = API::getInstance()->getSitesWithViewAccess();
- // we dont test the ts_created
+ // we don't test the ts_created
unset($sites[0]['ts_created']);
unset($sites[1]['ts_created']);
$this->assertEquals($resultWanted, $sites);
@@ -678,7 +678,7 @@ class ApiTest extends IntegrationTestCase
FakeAccess::setIdSitesAdmin(array());
$sites = API::getInstance()->getSitesWithAtLeastViewAccess();
- // we dont test the ts_created
+ // we don't test the ts_created
unset($sites[0]['ts_created']);
unset($sites[1]['ts_created']);
$this->assertEquals($resultWanted, $sites);