aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorArthur <arthur@hoa.ro>2016-05-05 13:21:36 +0200
committerArthur <arthur@hoa.ro>2016-05-05 13:21:36 +0200
commit86deafe0ff5a22a37255546cf82325e89bf272b1 (patch)
treee10c9ffb84f6acacc5df2b2e42cb23f9d0b6ab7f /tests
parent47be06098396b5eef35234b88227d64ab81bd988 (diff)
parent12ff86c961b49727fcae97938e864766aa77a2a9 (diff)
downloadShaarli-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.php2
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}