Mark test-map-into as unstable

* test/lisp/emacs-lisp/map-tests.el (test-map-into): Mark as
unstable (bug#46722).

Do not merge to master.
This commit is contained in:
Lars Ingebrigtsen 2022-01-14 08:39:48 +01:00
parent 34ca4ff9a5
commit 281b878858

View file

@ -422,6 +422,9 @@ Evaluate BODY for each created map."
(should (map-every-p (lambda (k _v) (zerop k)) map))))
(ert-deftest test-map-into ()
;; This test is unstable in Emacs 28, but the problem has been fixed
;; in Emacs 29 (bug#46722).
:tags '(:unstable)
(let* ((plist '(a 1 b 2))
(alist '((a . 1) (b . 2)))
(ht (map-into alist 'hash-table))