diff options
Diffstat (limited to 'test/automated/core-elisp-tests.el')
-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 bb76ee25c77..40169b836d5 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 "doc" 2 :group 'blah) c-e-x) + (defcustom c-e-x 2 "doc" :group 'blah) c-e-x) c-e-x) '(1 2))))) |