aboutsummaryrefslogtreecommitdiff
path: root/tests/test-pearl-compose.el
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-pearl-compose.el')
-rw-r--r--tests/test-pearl-compose.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-pearl-compose.el b/tests/test-pearl-compose.el
index bda75cb..a96a9ca 100644
--- a/tests/test-pearl-compose.el
+++ b/tests/test-pearl-compose.el
@@ -22,7 +22,7 @@
;; Tests for the shared compose buffer (`pearl--compose-in-buffer' and its
;; submit/abort/body helpers) and the two commands wired onto it:
;; `pearl-add-comment' (interactive composer path) and
-;; `pearl-compose-current-description'. The body is extracted below a read-only
+;; `pearl-edit-description'. The body is extracted below a read-only
;; header and converted Org->Markdown by the callers.
;;; Code:
@@ -129,7 +129,7 @@ Binds `captured' to the value the on-finish receives (or `:none'). Stubs
(should-not composed)
(should (string= "literal body" sent))))))
-;;; compose-current-description wiring
+;;; edit-description wiring
(ert-deftest test-pearl-compose-description-seeds-body-and-syncs ()
"The description composer seeds the current body and, on submit, writes it back and syncs."
@@ -141,7 +141,7 @@ Binds `captured' to the value the on-finish receives (or `:none'). Stubs
(funcall on-finish "Edited description")))
((symbol-function 'pearl-sync-current-issue)
(lambda () (setq synced t))))
- (pearl-compose-current-description)
+ (pearl-edit-description)
;; seeded with the existing body
(should (string= "Body." seeded))
;; the edited text was written into the issue body, then synced