Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-03-23 16:08:47 +0300
committerJoas Schilling <nickvergessen@owncloud.com>2015-03-23 16:25:03 +0300
commitbda7b5c446b28c3cc70030aa4cc7239b1cb4166a (patch)
tree9fda9f12f79e14b8ee0e720f68766d1f9c3e8af8 /tests
parent95d81c36ffff9c19681255f2af86e101409f2125 (diff)
The iran timezone removed the DST handling which breaks the timezone lib
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/util.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/lib/util.php b/tests/lib/util.php
index 9cb2a10818e..e77aa53b72d 100644
--- a/tests/lib/util.php
+++ b/tests/lib/util.php
@@ -52,13 +52,11 @@ class Test_Util extends \Test\TestCase {
OC_Util::formatDate(1350129205, false, 'Mordor/Barad-dûr');
}
- public function formatDateWithTZFromSessionData()
- {
+ public function formatDateWithTZFromSessionData() {
return array(
array(3, 'October 13, 2012 at 2:53:25 PM GMT+3'),
array(15, 'October 13, 2012 at 11:53:25 AM GMT+0'),
array(-13, 'October 13, 2012 at 11:53:25 AM GMT+0'),
- array(3.5, 'October 13, 2012 at 3:23:25 PM GMT+3:30'),
array(9.5, 'October 13, 2012 at 9:23:25 PM GMT+9:30'),
array(-4.5, 'October 13, 2012 at 7:23:25 AM GMT-4:30'),
array(15.5, 'October 13, 2012 at 11:53:25 AM GMT+0'),