diff options
author | Arthur <arthur@hoa.ro> | 2016-05-05 13:21:36 +0200 |
---|---|---|
committer | Arthur <arthur@hoa.ro> | 2016-05-05 13:21:36 +0200 |
commit | 86deafe0ff5a22a37255546cf82325e89bf272b1 (patch) | |
tree | e10c9ffb84f6acacc5df2b2e42cb23f9d0b6ab7f /tests | |
parent | 47be06098396b5eef35234b88227d64ab81bd988 (diff) | |
parent | 12ff86c961b49727fcae97938e864766aa77a2a9 (diff) | |
download | Shaarli-86deafe0ff5a22a37255546cf82325e89bf272b1.tar.gz Shaarli-86deafe0ff5a22a37255546cf82325e89bf272b1.tar.zst Shaarli-86deafe0ff5a22a37255546cf82325e89bf272b1.zip |
Merge pull request #551 from ArthurHoaro/hotfix/timezone
Use correct 'UTC' timezone
Diffstat (limited to 'tests')
-rw-r--r-- | tests/TimeZoneTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TimeZoneTest.php b/tests/TimeZoneTest.php index b219030a..2976d116 100644 --- a/tests/TimeZoneTest.php +++ b/tests/TimeZoneTest.php | |||
@@ -67,7 +67,6 @@ class TimeZoneTest extends PHPUnit_Framework_TestCase | |||
67 | { | 67 | { |
68 | $this->assertTrue(isTimeZoneValid('America', 'Argentina/Ushuaia')); | 68 | $this->assertTrue(isTimeZoneValid('America', 'Argentina/Ushuaia')); |
69 | $this->assertTrue(isTimeZoneValid('Europe', 'Oslo')); | 69 | $this->assertTrue(isTimeZoneValid('Europe', 'Oslo')); |
70 | $this->assertTrue(isTimeZoneValid('UTC', 'UTC')); | ||
71 | } | 70 | } |
72 | 71 | ||
73 | /** | 72 | /** |
@@ -78,5 +77,6 @@ class TimeZoneTest extends PHPUnit_Framework_TestCase | |||
78 | $this->assertFalse(isTimeZoneValid('CEST', 'CEST')); | 77 | $this->assertFalse(isTimeZoneValid('CEST', 'CEST')); |
79 | $this->assertFalse(isTimeZoneValid('Europe', 'Atlantis')); | 78 | $this->assertFalse(isTimeZoneValid('Europe', 'Atlantis')); |
80 | $this->assertFalse(isTimeZoneValid('Middle_Earth', 'Moria')); | 79 | $this->assertFalse(isTimeZoneValid('Middle_Earth', 'Moria')); |
80 | $this->assertFalse(isTimeZoneValid('UTC', 'UTC')); | ||
81 | } | 81 | } |
82 | } | 82 | } |