summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/ert.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-03-10 04:34:53 +0100
committerStefan Kangas <stefan@marxist.se>2021-03-10 04:34:53 +0100
commit4cb52200cb67d3cd1aa77717d12d4b88845e1755 (patch)
treec67f1399414e10fdefd3dd639910716dad6b004c /lisp/emacs-lisp/ert.el
parentdc2688acb30afe747e874a0737cdfc07bd1efa3b (diff)
downloademacs-4cb52200cb67d3cd1aa77717d12d4b88845e1755.tar.gz
Fix duplicate ":" in ert-find-test-other-window prompt
* lisp/emacs-lisp/ert.el (ert-find-test-other-window): Don't insert duplicate ":" in prompt.
Diffstat (limited to 'lisp/emacs-lisp/ert.el')
-rw-r--r--lisp/emacs-lisp/ert.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/ert.el b/lisp/emacs-lisp/ert.el
index f7f53eaa700..e91ec0af443 100644
--- a/lisp/emacs-lisp/ert.el
+++ b/lisp/emacs-lisp/ert.el
@@ -1633,7 +1633,7 @@ default (if any)."
(defun ert-find-test-other-window (test-name)
"Find, in another window, the definition of TEST-NAME."
- (interactive (list (ert-read-test-name-at-point "Find test definition: ")))
+ (interactive (list (ert-read-test-name-at-point "Find test definition")))
(find-function-do-it test-name 'ert--test 'switch-to-buffer-other-window))
(defun ert-delete-test (test-name)