* lisp/emacs-lisp/ert.el (ert-select-tests): Fix string/symbol mixup.
Fixes: debbugs:16121
This commit is contained in:
parent
570c054a6f
commit
049638ad60
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue