]> git.eshelyaron.com Git - emacs.git/commitdiff
Make old-struct test more robust
authorMattias Engdegård <mattiase@acm.org>
Thu, 4 May 2023 15:47:05 +0000 (17:47 +0200)
committerMattias Engdegård <mattiase@acm.org>
Fri, 5 May 2023 20:00:28 +0000 (22:00 +0200)
* test/lisp/emacs-lisp/cl-lib-tests.el (old-struct):
Use the `vector` constructor instead of vector literals to
avoid failing because of `type-of` constant-folding.

test/lisp/emacs-lisp/cl-lib-tests.el

index 4e1a0fd63a2d63f87f496b4ee8ad573cb523270a..b14731c4d0a67ee16cf35be9064ecae04fa90017 100644 (file)
 
 (ert-deftest old-struct ()
   (cl-defstruct foo x)
-  (let ((x [cl-struct-foo])
+  (let ((x (vector 'cl-struct-foo))
         (saved cl-old-struct-compat-mode))
     (cl-old-struct-compat-mode -1)
     (should (eq (type-of x) 'vector))
     (let ((cl-struct-foo (cl--struct-get-class 'foo)))
       (setf (symbol-function 'cl-struct-foo) :quick-object-witness-check)
       (should (eq (type-of x) 'foo))
-      (should (eq (type-of [foo]) 'vector)))
+      (should (eq (type-of (vector 'foo)) 'vector)))
 
     (cl-old-struct-compat-mode (if saved 1 -1))))