From 0baccec7b4c3a7487dc6ca7c3d6b71130b916efc Mon Sep 17 00:00:00 2001 From: Caroline Chao Date: Mon, 29 Oct 2012 09:30:20 +0100 Subject: Test: Fix tst_qqmlecmascript::exportDate Get timezone offset of the date specified and not the default value. Change-Id: I58dba896098cbee72a2e4ec15ba2c928121e6cff Reviewed-by: Friedemann Kleint --- tests/auto/qml/qqmlecmascript/data/exportDate.2.qml | 2 +- tests/auto/qml/qqmlecmascript/data/exportDate.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/auto/qml/qqmlecmascript/data/exportDate.2.qml b/tests/auto/qml/qqmlecmascript/data/exportDate.2.qml index 8ad75aabb0..4420cf846c 100644 --- a/tests/auto/qml/qqmlecmascript/data/exportDate.2.qml +++ b/tests/auto/qml/qqmlecmascript/data/exportDate.2.qml @@ -12,7 +12,7 @@ MyTypeObject { // The test date is 2009-5-12 23:59:59 (local time) var compare = new Date(2009, 5-1, 12, 23, 59, 59) - var compareOffset = new Date().getTimezoneOffset() + var compareOffset = compare.getTimezoneOffset() // The date is already in local time, so we can use the partial values directly var dtAdjusted = dt diff --git a/tests/auto/qml/qqmlecmascript/data/exportDate.qml b/tests/auto/qml/qqmlecmascript/data/exportDate.qml index 13b35a9cb8..c42b092fc7 100644 --- a/tests/auto/qml/qqmlecmascript/data/exportDate.qml +++ b/tests/auto/qml/qqmlecmascript/data/exportDate.qml @@ -12,7 +12,7 @@ MyTypeObject { // The test date is 2009-5-12 00:00:01 (local time) var compare = new Date(2009, 5-1, 12, 0, 0, 1) - var compareOffset = new Date().getTimezoneOffset() + var compareOffset = compare.getTimezoneOffset() // The date is already in local time, so we can use the partial values directly var dtAdjusted = dt -- cgit v1.2.3