summaryrefslogtreecommitdiff
path: root/test/lisp/emacs-lisp/comp-cstr-tests.el
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2021-01-04 22:14:50 +0100
committerAndrea Corallo <akrl@sdf.org>2021-01-04 22:31:40 +0100
commit7293c23d14ed96cc07eeb87f0d974dcc25dcfa98 (patch)
treea6fe5998a41126004149b322074ec1c42e753d33 /test/lisp/emacs-lisp/comp-cstr-tests.el
parent5074447ef4980e2eb613e908e346fd3471f52139 (diff)
downloademacs-7293c23d14ed96cc07eeb87f0d974dcc25dcfa98.tar.gz
* Fix a type specifier test
* test/lisp/emacs-lisp/comp-cstr-tests.el (comp-cstr-typespec-tests-alist): Fix a testcase.
Diffstat (limited to 'test/lisp/emacs-lisp/comp-cstr-tests.el')
-rw-r--r--test/lisp/emacs-lisp/comp-cstr-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/comp-cstr-tests.el b/test/lisp/emacs-lisp/comp-cstr-tests.el
index 149afaf85d8..f5ed05244d7 100644
--- a/test/lisp/emacs-lisp/comp-cstr-tests.el
+++ b/test/lisp/emacs-lisp/comp-cstr-tests.el
@@ -103,7 +103,7 @@
;; 30
((and (member foo) (integer 1 2)) . nil)
;; 31
- ((and (member 1 2) (member 3 2)) . (member 2))
+ ((and (member 1 2) (member 3 2)) . (integer 2 2))
;; 32
((and number (integer 1 2)) . (integer 1 2))
;; 33