diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-01-14 08:39:48 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-01-14 08:39:57 +0100 |
commit | 281b878858b381762ac74a96c85d383e8f423db9 (patch) | |
tree | 2c9f0fde40570e8c61144ed78882873cc31db47d /test/lisp/emacs-lisp/map-tests.el | |
parent | 34ca4ff9a52d38250f70f578fd045490b4eef4f9 (diff) | |
download | emacs-281b878858b381762ac74a96c85d383e8f423db9.tar.gz emacs-281b878858b381762ac74a96c85d383e8f423db9.tar.bz2 emacs-281b878858b381762ac74a96c85d383e8f423db9.zip |
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.
Diffstat (limited to 'test/lisp/emacs-lisp/map-tests.el')
-rw-r--r-- | test/lisp/emacs-lisp/map-tests.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lisp/emacs-lisp/map-tests.el b/test/lisp/emacs-lisp/map-tests.el index 314a1c9e302..31be0784ecb 100644 --- a/test/lisp/emacs-lisp/map-tests.el +++ b/test/lisp/emacs-lisp/map-tests.el @@ -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)) |