From 0ae1a144a83cbfe8bba1abb295ece69c4dcff5f7 Mon Sep 17 00:00:00 2001 From: Glenn Morris <rgm@gnu.org> Date: Tue, 12 Jan 2016 20:04:49 -0500 Subject: [PATCH] * test/automated/core-elisp-tests.el (core-elisp-tests-1-defvar-in-let): Add a custom type. --- test/automated/core-elisp-tests.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))))) -- 2.39.5