]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix duplicate ":" in ert-find-test-other-window prompt
authorStefan Kangas <stefan@marxist.se>
Wed, 10 Mar 2021 03:34:53 +0000 (04:34 +0100)
committerStefan Kangas <stefan@marxist.se>
Wed, 10 Mar 2021 03:34:53 +0000 (04:34 +0100)
* lisp/emacs-lisp/ert.el (ert-find-test-other-window): Don't insert
duplicate ":" in prompt.

lisp/emacs-lisp/ert.el

index f7f53eaa700cb591b2cf2d629414c00c96501bb3..e91ec0af4434b067702f895371ba85ad5d63c31a 100644 (file)
@@ -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)