diff options
author | ArthurHoaro <arthur@hoa.ro> | 2016-05-03 20:09:24 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2016-05-03 20:09:24 +0200 |
commit | 12ff86c961b49727fcae97938e864766aa77a2a9 (patch) | |
tree | d66dd252d0a1d5f935fe4784be896ce22434b775 /tests/TimeZoneTest.php | |
parent | 9ad2950debf1d9e4528700854cf7c02daac9636d (diff) | |
download | Shaarli-12ff86c961b49727fcae97938e864766aa77a2a9.tar.gz Shaarli-12ff86c961b49727fcae97938e864766aa77a2a9.tar.zst Shaarli-12ff86c961b49727fcae97938e864766aa77a2a9.zip |
Use correct 'UTC' timezone
Diffstat (limited to 'tests/TimeZoneTest.php')
-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 | } |