summaryrefslogtreecommitdiff
path: root/cider-test.el
diff options
context:
space:
mode:
authorAndy Chambers <andy.chambers@fundingcircle.com>2015-09-10 18:13:50 -0700
committerAndy Chambers <andy.chambers@fundingcircle.com>2015-09-10 18:13:50 -0700
commite77a906d694cc94893fbaf334b0102de97f7f8cf (patch)
tree9a9f61463d1bf365e0aa0f911112ec3c52bde50e /cider-test.el
parenta2cbb8e15f09777a1011139662562a882ea29666 (diff)
Remove gratuitous use of CL rest function
Diffstat (limited to 'cider-test.el')
-rw-r--r--cider-test.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-test.el b/cider-test.el
index df43097a..32f95d05 100644
--- a/cider-test.el
+++ b/cider-test.el
@@ -475,7 +475,7 @@ is searched."
(let ((ns (clojure-find-ns))
(def (clojure-find-def)))
(if (and ns (member (car def) '("deftest" "defspec")))
- (cider-test-execute ns nil (rest def))
+ (cider-test-execute ns nil (cdr def))
(message "No test at point"))))))
(provide 'cider-test)