aboutsummaryrefslogtreecommitdiff
path: root/tests/test-pearl-org-write.el
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-pearl-org-write.el')
-rw-r--r--tests/test-pearl-org-write.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test-pearl-org-write.el b/tests/test-pearl-org-write.el
index 6491b54..6c30380 100644
--- a/tests/test-pearl-org-write.el
+++ b/tests/test-pearl-org-write.el
@@ -33,12 +33,10 @@
"One normalized issue, enough to render a recognizable org entry.")
(defmacro test-pearl--with-org-file (var &rest body)
- "Bind VAR to a fresh temp .org path and run BODY, cleaning up after.
-The state mapping is bound so rendering is deterministic."
+ "Bind VAR to a fresh temp .org path and run BODY, cleaning up after."
(declare (indent 1))
`(let* ((,var (make-temp-file "linear-test-" nil ".org"))
- (pearl-org-file-path ,var)
- (pearl-state-to-todo-mapping '(("Todo" . "TODO"))))
+ (pearl-org-file-path ,var))
(unwind-protect
(progn ,@body)
(let ((b (find-buffer-visiting ,var)))