projects
/
fiveam.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b76fc6a
)
Remove redundant lambda
author
Stelian Ionescu
<sionescu@cddr.org>
Sun, 18 Nov 2012 04:38:54 +0000
(
05:38
+0100)
committer
Stelian Ionescu
<sionescu@cddr.org>
Sun, 18 Nov 2012 04:38:54 +0000
(
05:38
+0100)
src/run.lisp
patch
|
blob
|
history
diff --git
a/src/run.lisp
b/src/run.lisp
index
417acd8
..
31a3f02
100644
(file)
--- a/
src/run.lisp
+++ b/
src/run.lisp
@@
-202,9
+202,7
@@
run."))
(run-tests)
(run-tests)))
(setf suite-results result-list
- (status suite) (every (lambda (res)
- (typep res 'test-passed))
- suite-results)))
+ (status suite) (every #'test-passed-p suite-results)))
(with-run-state (result-list)
(setf result-list (nconc result-list suite-results)))))))