diff options
Diffstat (limited to 'tests/test-pearl-refresh.el')
| -rw-r--r-- | tests/test-pearl-refresh.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test-pearl-refresh.el b/tests/test-pearl-refresh.el index ba17836..d09c96c 100644 --- a/tests/test-pearl-refresh.el +++ b/tests/test-pearl-refresh.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) |
