diff options
Diffstat (limited to 'tests/test-pearl-fields.el')
| -rw-r--r-- | tests/test-pearl-fields.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test-pearl-fields.el b/tests/test-pearl-fields.el index 2ad9679..53e4ac8 100644 --- a/tests/test-pearl-fields.el +++ b/tests/test-pearl-fields.el @@ -31,11 +31,9 @@ (require 'cl-lib) (defmacro test-pearl--in-org (content &rest body) - "Run BODY in an org-mode temp buffer holding CONTENT, default mapping bound." + "Run BODY in an org-mode temp buffer holding CONTENT." (declare (indent 1)) - `(let ((pearl-state-to-todo-mapping - '(("Todo" . "TODO") ("In Progress" . "IN-PROGRESS") ("Done" . "DONE"))) - (org-todo-keywords '((sequence "TODO" "IN-PROGRESS" "|" "DONE")))) + `(let ((org-todo-keywords '((sequence "TODO" "IN-PROGRESS" "|" "DONE")))) (with-temp-buffer (insert ,content) (org-mode) |
