diff options
author | Wamm K. D <jaft.r@outlook.com> | 2022-10-27 14:07:03 -0500 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-10-28 10:33:18 +0300 |
commit | e893fd10735239aeecae83805fc4cc6b37156a01 (patch) | |
tree | fac03365e0be17ee74287e8993c7af3c0ecacc98 /test/lisp/emacs-lisp/hierarchy-tests.el | |
parent | 52d4c98cec0901ef5cc1c55d5b3b33ac9d9c519f (diff) | |
download | emacs-e893fd10735239aeecae83805fc4cc6b37156a01.tar.gz emacs-e893fd10735239aeecae83805fc4cc6b37156a01.tar.bz2 emacs-e893fd10735239aeecae83805fc4cc6b37156a01.zip |
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.
Diffstat (limited to 'test/lisp/emacs-lisp/hierarchy-tests.el')
-rw-r--r-- | test/lisp/emacs-lisp/hierarchy-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/hierarchy-tests.el b/test/lisp/emacs-lisp/hierarchy-tests.el index d83460a2baa..97a0f7ba52c 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))) |