diff options
Diffstat (limited to 'tests/test-pearl-merge.el')
| -rw-r--r-- | tests/test-pearl-merge.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test-pearl-merge.el b/tests/test-pearl-merge.el index ba73cc6..7cb2a34 100644 --- a/tests/test-pearl-merge.el +++ b/tests/test-pearl-merge.el @@ -33,11 +33,9 @@ (require 'cl-lib) (defmacro test-pearl-merge--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")))) ;; the merge's derived-header rebuild gathers team states synchronously; ;; stub it so the merge tests stay network-free (the header then derives ;; from the displayed issues' own states) |
