Skip to content

Commit

Permalink
Fix another test
Browse files Browse the repository at this point in the history
  • Loading branch information
jwiegley committed Apr 14, 2023
1 parent 692e6a5 commit 343c40d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions use-package-tests.el
Original file line number Diff line number Diff line change
Expand Up @@ -1926,9 +1926,9 @@
(use-package nonexistent
:hook lisp-mode)
`(when (locate-library nonexistent)
(unless (fboundp 'nonexistent-mode)
(autoload #'nonexistent-mode "nonexistent" nil t))
(add-hook 'lisp-mode-hook #'nonexistent-mode)))))
(unless (fboundp 'nonexistent)
(autoload #'nonexistent "nonexistent" nil t))
(add-hook 'lisp-mode-hook #'nonexistent)))))

(ert-deftest bind-key/:prefix-map ()
(match-expansion
Expand Down

0 comments on commit 343c40d

Please sign in to comment.