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:
Diffstat (limited to 'tests/PHPUnit/Core/DateTest.php')
-rw-r--r--tests/PHPUnit/Core/DateTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Core/DateTest.php b/tests/PHPUnit/Core/DateTest.php
index f208e90c28..fbff27519e 100644
--- a/tests/PHPUnit/Core/DateTest.php
+++ b/tests/PHPUnit/Core/DateTest.php
@@ -55,7 +55,7 @@ class DateTest extends PHPUnit_Framework_TestCase
*/
public function testFactoryTimezone()
{
- // now in UTC converted to UTC+10 means adding 10 hours
+ // now in UTC converted to UTC+10 means adding 10 hours
$date = Date::factory('now', 'UTC+10');
$dateExpected = Date::now()->addHour(10);
$this->assertEquals($dateExpected->getDatetime(), $date->getDatetime());