diff options
| author | Wamm K. D | 2022-10-27 14:07:03 -0500 |
|---|---|---|
| committer | Eli Zaretskii | 2022-10-28 10:33:18 +0300 |
| commit | e893fd10735239aeecae83805fc4cc6b37156a01 (patch) | |
| tree | fac03365e0be17ee74287e8993c7af3c0ecacc98 | |
| parent | 52d4c98cec0901ef5cc1c55d5b3b33ac9d9c519f (diff) | |
| download | emacs-e893fd10735239aeecae83805fc4cc6b37156a01.tar.gz 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.
| -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." | |||
| 689 | (190.5 '191) | 689 | (190.5 '191) |
| 690 | (191 '192)))) | 690 | (191 '192)))) |
| 691 | (hierarchy (hierarchy-new))) | 691 | (hierarchy (hierarchy-new))) |
| 692 | (hierarchy-add-trees hierarchy '(191 190.5) parentfn | 692 | (hierarchy-add-trees hierarchy '(190 190.5) parentfn |
| 693 | #'hierarchy-examples-delayed--childrenfn nil t) | 693 | #'hierarchy-examples-delayed--childrenfn nil t) |
| 694 | (should (equal (hierarchy-roots hierarchy) '(192))) | 694 | (should (equal (hierarchy-roots hierarchy) '(192))) |
| 695 | (should (equal (hierarchy-children hierarchy '192) '(191))) | 695 | (should (equal (hierarchy-children hierarchy '192) '(191))) |