Skip to content

Commit

Permalink
Fix duplicate ":" in ert-find-test-other-window prompt
Browse files Browse the repository at this point in the history
* lisp/emacs-lisp/ert.el (ert-find-test-other-window): Don't insert
duplicate ":" in prompt.
  • Loading branch information
skangas committed Mar 10, 2021
1 parent dc2688a commit 4cb5220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisp/emacs-lisp/ert.el
Expand Up @@ -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)
Expand Down

0 comments on commit 4cb5220

Please sign in to comment.