Skip to content

Commit

Permalink
Tests: Fix symbol name
Browse files Browse the repository at this point in the history
See also <#207>,
but the problem with this test appears to be something else.
  • Loading branch information
alphapapa committed Jun 27, 2024
1 parent 51c9da5 commit 0d87729
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test.el
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ already loaded."
:and (:todo "TODO" :priority>= "B" :tag "bills")
:discard (:anything)))
:let* ((org-agenda-sorting-strategy '(priority-down tag-down))
(org-super-agenda-retain-sorting t)))))
(org-super-agenda-keep-order t)))))

(ert-deftest org-super-agenda-test--without-retained-sorting ()
(should (org-super-agenda-test--run
Expand All @@ -937,7 +937,7 @@ already loaded."
:and (:todo "TODO" :priority>= "B" :tag "bills")
:discard (:anything)))
:let* ((org-agenda-sorting-strategy '(priority-down tag-down))
(org-super-agenda-retain-sorting nil)))))
(org-super-agenda-keep-order nil)))))

(ert-deftest org-super-agenda-test--:order ()
;; DONE: Works.
Expand Down

0 comments on commit 0d87729

Please sign in to comment.