Skip to content

Commit

Permalink
Fix linting warning about unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
casch-at committed Feb 15, 2024
1 parent 86f92e6 commit 620d58c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/org-journal-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
(kill-buffer)
(let ((message-marker nil))
(cl-letf (((symbol-function 'message)
#'(lambda (x &rest y) (setq message-marker x))))
#'(lambda (x &rest _y) (setq message-marker x))))
(org-journal-read-or-display-entry (encode-time 0 0 0 2 1 2019) 'noselect)
(should (equal "No journal entry for this date." message-marker))
)))))
Expand Down

0 comments on commit 620d58c

Please sign in to comment.