aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-02-16 04:49:43 -0600
committerCraig Jennings <c@cjennings.net>2026-02-16 04:49:43 -0600
commit2b808e2470c6bdee573c31715356f4e31e216973 (patch)
tree33b20ddb6524e2201129a2b9357856708fdd6e3c
parentd584d4c25034b1c51bce480441f40f924f090a9c (diff)
downloaddotemacs-2b808e2470c6bdee573c31715356f4e31e216973.tar.gz
dotemacs-2b808e2470c6bdee573c31715356f4e31e216973.zip
fix(tests): add missing requires for org-noter test dependencies
Tests failed after org-noter-config started using roam-dir and cj/custom-keymap. Added requires for user-constants and keybindings.
-rw-r--r--tests/test-org-noter--generate-notes-template.el2
-rw-r--r--tests/test-org-noter--title-to-slug.el2
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/test-org-noter--generate-notes-template.el b/tests/test-org-noter--generate-notes-template.el
index 39906bdd4..d71ce73ae 100644
--- a/tests/test-org-noter--generate-notes-template.el
+++ b/tests/test-org-noter--generate-notes-template.el
@@ -8,6 +8,8 @@
(require 'ert)
(require 'org-id) ; needed for org-id-uuid
+(require 'user-constants)
+(require 'keybindings)
(require 'org-noter-config)
;;; Test Helpers
diff --git a/tests/test-org-noter--title-to-slug.el b/tests/test-org-noter--title-to-slug.el
index b6880cf61..8b7022824 100644
--- a/tests/test-org-noter--title-to-slug.el
+++ b/tests/test-org-noter--title-to-slug.el
@@ -7,6 +7,8 @@
;;; Code:
(require 'ert)
+(require 'user-constants)
+(require 'keybindings)
(require 'org-noter-config)
;;; Normal Cases