]> git.eshelyaron.com Git - emacs.git/commitdiff
; * test/lisp/erc/erc-stamp-tests.el (erc-echo-timestamp): Tag unstable.
authorF. Jason Park <jp@neverwas.me>
Wed, 13 Sep 2023 23:04:43 +0000 (16:04 -0700)
committerF. Jason Park <jp@neverwas.me>
Wed, 13 Sep 2023 23:05:55 +0000 (16:05 -0700)
test/lisp/erc/erc-stamp-tests.el

index b00aa6dcabff72bdc1fdb493b2f8f93b56248851..46a05729066e3c91d317dba45d3c6c6a5f2768a3 100644 (file)
         (kill-buffer)))))
 
 (ert-deftest erc-echo-timestamp ()
+  :tags (and (null (getenv "CI")) '(:unstable))
+
   (should-not erc-echo-timestamps)
   (should-not erc-stamp--last-stamp)
   (insert (propertize "abc" 'erc-timestamp 433483200))
                    "1983-09-27 00:00:00 EDT"))
     ;; Interactive with zone
     (let ((current-prefix-arg '(4)))
-      (should (equal (call-interactively #'erc-echo-timestamp)
-                     "1983-09-27 04:00:00 GMT")))
+      (should (member (call-interactively #'erc-echo-timestamp)
+                      '("1983-09-27 04:00:00 GMT"
+                        "1983-09-27 04:00:00 UTC"))))
     (let ((current-prefix-arg -7))
       (should (equal (call-interactively #'erc-echo-timestamp)
                      "1983-09-26 21:00:00 -07")))))