summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ChangeLog5
-rw-r--r--test/automated/icalendar-tests.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index 7407f1fe725..f3d14786bd9 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+2013-08-04 Glenn Morris <rgm@gnu.org>
+
+ * automated/icalendar-tests.el (icalendar-tests--test-export)
+ (icalendar-tests--test-import): Try more precise TZ specification.
+
2013-08-03 Glenn Morris <rgm@gnu.org>
* automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom.
diff --git a/test/automated/icalendar-tests.el b/test/automated/icalendar-tests.el
index 85442b20198..227855681e8 100644
--- a/test/automated/icalendar-tests.el
+++ b/test/automated/icalendar-tests.el
@@ -434,7 +434,7 @@ and ISO style input data must use english month names."
(unwind-protect
(progn
(message "Current time zone: %s" (current-time-zone))
- (setenv "TZ" "CET")
+ (setenv "TZ" "CET-1CEST,M3.5.0/2,M10.5.0/3")
(message "Current time zone: %s" (current-time-zone))
(when input-iso
(let ((calendar-month-name-array
@@ -677,7 +677,7 @@ Argument EXPECTED-AMERICAN expected american style diary string."
(unwind-protect
(progn
(message "Current time zone: %s" (current-time-zone))
- (setenv "TZ" "CET")
+ (setenv "TZ" "CET-1CEST,M3.5.0/2,M10.5.0/3")
(message "Current time zone: %s" (current-time-zone))
(with-temp-buffer
(if (string-match "^BEGIN:VCALENDAR" input)