Skip to content

Commit

Permalink
Minor change to allow easier batch runs.
Browse files Browse the repository at this point in the history
  • Loading branch information
espenhw committed Mar 4, 2009
1 parent f77a58e commit 383633d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/lisp/elk-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ case a message describing the errors or success is displayed and returned."
(error "Undefined test <%s>" name)
(setq error-list (if (equal (car test-or-group) 'group)
;; is test group
(mapcan 'elk-test-run (cdr test-or-group))
(mapcar 'elk-test-run (cdr test-or-group))
;; is simple test
(elk-test-run-internal test-or-group)))
(cons name (elk-test-run-internal test-or-group))))
(if (or string-result (interactive-p))
(message (if error-list
(mapconcat 'identity error-list "\n")
Expand Down

0 comments on commit 383633d

Please sign in to comment.