From: Glenn Morris Date: Wed, 13 Jan 2016 01:04:49 +0000 (-0500) Subject: * test/automated/core-elisp-tests.el X-Git-Tag: emacs-25.0.90~187 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0ae1a144a83cbfe8bba1abb295ece69c4dcff5f7;p=emacs.git * test/automated/core-elisp-tests.el (core-elisp-tests-1-defvar-in-let): Add a custom type. --- diff --git a/test/automated/core-elisp-tests.el b/test/automated/core-elisp-tests.el index 76985331566..b44bb37cc4f 100644 --- a/test/automated/core-elisp-tests.el +++ b/test/automated/core-elisp-tests.el @@ -32,7 +32,7 @@ (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 "doc" :group 'blah) c-e-x) + (defcustom c-e-x 2 "doc" :group 'blah :type 'integer) c-e-x) c-e-x) '(1 2)))))