aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/automated/core-elisp-tests.el2
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 @@
32 (should (equal (list (let ((c-e-x 1)) (defvar c-e-x 2) c-e-x) c-e-x) 32 (should (equal (list (let ((c-e-x 1)) (defvar c-e-x 2) c-e-x) c-e-x)
33 '(1 2))) 33 '(1 2)))
34 (should (equal (list (let ((c-e-x 1)) 34 (should (equal (list (let ((c-e-x 1))
35 (defcustom c-e-x 2 "doc" :group 'blah) c-e-x) 35 (defcustom c-e-x 2 "doc" :group 'blah :type 'integer) c-e-x)
36 c-e-x) 36 c-e-x)
37 '(1 2))))) 37 '(1 2)))))
38 38