From d1f00a672953cfb1a58959cd32f09ae63a4172ee Mon Sep 17 00:00:00 2001 From: "Wamm K. D" Date: Thu, 27 Oct 2022 14:07:03 -0500 Subject: [PATCH] Fix failing test for package Hierarchy This fixes a typo in one of the tests of Hierarchy which was causing the test to fail. * test/lisp/emacs-lisp/hierarchy-tests.el: Fix typo in hierarchy-delayed-add-trees --- test/lisp/emacs-lisp/hierarchy-tests.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lisp/emacs-lisp/hierarchy-tests.el b/test/lisp/emacs-lisp/hierarchy-tests.el index d83460a2ba..97a0f7ba52 100644 --- a/test/lisp/emacs-lisp/hierarchy-tests.el +++ b/test/lisp/emacs-lisp/hierarchy-tests.el @@ -689,7 +689,7 @@ and then create a list of the number plus 0.0–0.9." (190.5 '191) (191 '192)))) (hierarchy (hierarchy-new))) - (hierarchy-add-trees hierarchy '(191 190.5) parentfn + (hierarchy-add-trees hierarchy '(190 190.5) parentfn #'hierarchy-examples-delayed--childrenfn nil t) (should (equal (hierarchy-roots hierarchy) '(192))) (should (equal (hierarchy-children hierarchy '192) '(191))) -- 2.38.0