* 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
|
@ -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