From: Lars Ingebrigtsen Date: Fri, 31 Dec 2021 15:50:50 +0000 (+0100) Subject: `make-finalizer' now has to be called with a function, so adjust test X-Git-Tag: emacs-29.0.90~3327 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c09fcb8f07c1fa6864a38c28e3f27298136b8b8e;p=emacs.git `make-finalizer' now has to be called with a function, so adjust test --- diff --git a/test/src/alloc-tests.el b/test/src/alloc-tests.el index 5383c436035..80b18dfa492 100644 --- a/test/src/alloc-tests.el +++ b/test/src/alloc-tests.el @@ -30,7 +30,7 @@ (require 'cl-lib) (ert-deftest finalizer-object-type () - (should (equal (type-of (make-finalizer nil)) 'finalizer))) + (should (equal (type-of (make-finalizer #'ignore)) 'finalizer))) (ert-deftest record-1 () (let ((x (record 'foo 1 2 3)))