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 (hierarchy-delayed-add-trees):
Fix typo.
This commit is contained in:
Wamm K. D 2022-10-27 14:07:03 -05:00 committed by Eli Zaretskii
parent 52d4c98cec
commit e893fd1073

View file

@ -689,7 +689,7 @@ and then create a list of the number plus 0.00.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)))