From: Glenn Morris Date: Sat, 3 Aug 2013 01:43:30 +0000 (-0700) Subject: * test/automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1688^2~15 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f21d308949823041db6f828d6c080c2a564fb05;p=emacs.git * test/automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom. --- diff --git a/test/ChangeLog b/test/ChangeLog index 0b42f5d2be3..ae66b25897e 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,5 +1,7 @@ 2013-08-03 Glenn Morris + * automated/core-elisp-tests.el (core-elisp-tests): Fix defcustom. + * automated/icalendar-tests.el (icalendar-tests--test-export) (icalendar-tests--test-import): Use getenv/setenv rather than set-time-zone-rule. diff --git a/test/automated/core-elisp-tests.el b/test/automated/core-elisp-tests.el index 809be10bc02..bb76ee25c77 100644 --- a/test/automated/core-elisp-tests.el +++ b/test/automated/core-elisp-tests.el @@ -31,7 +31,9 @@ ;; is properly initialized. (should (equal (list (let ((c-e-x 1)) (defvar c-e-x 2) c-e-x) c-e-x) '(1 2))) - (should (equal (list (let ((c-e-x 1)) (defcustom c-e-x 2) c-e-x) c-e-x) + (should (equal (list (let ((c-e-x 1)) + (defcustom c-e-x "doc" 2 :group 'blah) c-e-x) + c-e-x) '(1 2))))) (provide 'core-elisp-tests)