* lisp/emacs-lisp/ert.el (ert-select-tests): Fix string/symbol mixup.

Fixes: debbugs:16121
This commit is contained in:
Glenn Morris 2013-12-19 00:14:37 -08:00
parent 570c054a6f
commit 049638ad60
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-12-19 Glenn Morris <rgm@gnu.org>
* emacs-lisp/ert.el (ert-select-tests):
Fix string/symbol mixup. (Bug#16121)
2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
* progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block

View file

@ -999,7 +999,8 @@ contained in UNIVERSE."
(list (cl-remove-if-not (lambda (test)
(and (ert-test-name test)
(string-match selector
(ert-test-name test))))
(symbol-name
(ert-test-name test)))))
universe))))
(ert-test (list selector))
(symbol