diff options
author | Glenn Morris <rgm@gnu.org> | 2016-01-12 20:04:49 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2016-01-12 20:04:49 -0500 |
commit | 0ae1a144a83cbfe8bba1abb295ece69c4dcff5f7 (patch) | |
tree | 5416d20edfcd8a953e55625af5403ae6f8ac0be2 | |
parent | 0d7bdee57737ea4e51c45cd0ae68656f03010b4a (diff) | |
download | emacs-0ae1a144a83cbfe8bba1abb295ece69c4dcff5f7.tar.gz |
* test/automated/core-elisp-tests.el
(core-elisp-tests-1-defvar-in-let): Add a custom type.
-rw-r--r-- | test/automated/core-elisp-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
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))))) |