]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix failing test for package Hierarchy
authorWamm K. D <jaft.r@outlook.com>
Thu, 27 Oct 2022 19:07:03 +0000 (14:07 -0500)
committerEli Zaretskii <eliz@gnu.org>
Fri, 28 Oct 2022 07:33:18 +0000 (10:33 +0300)
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 (hierarchy-delayed-add-trees):
Fix typo.

test/lisp/emacs-lisp/hierarchy-tests.el

index d83460a2baaf1cf0079df96033f56a8f6393c87d..97a0f7ba52cefdd0ea6d3881a87a7ac76657d70f 100644 (file)
@@ -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)))