summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2015-08-29 14:27:16 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2015-08-29 14:29:50 +0300
commit384ece26785d7502812818334d41cd787f590626 (patch)
treea21350efffe43a94fd0eb247a7cc5fc0ec304b74 /test
parent33d90ecd079fd0d9a6c07c2eafb02151119527f0 (diff)
Continue to decouple CIDER from nrepl-client
This time around we tackle all remaining requests.
Diffstat (limited to 'test')
-rw-r--r--test/cider-tests--no-auto.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cider-tests--no-auto.el b/test/cider-tests--no-auto.el
index 1d0facc7..c00ef630 100644
--- a/test/cider-tests--no-auto.el
+++ b/test/cider-tests--no-auto.el
@@ -71,7 +71,7 @@ from the latter. Remaining content is compared for string equality."
(defun cider-test-all-docs ()
"Verify docs for all special forms and every public var in `clojure/core'."
(let ((syms (read
- (nrepl-sync-request:eval
+ (cider-nrepl-sync-request:eval
"(->> (merge @#'clojure.repl/special-doc-map
(->> (ns-map 'clojure.core)
(filter (every-pred
@@ -79,7 +79,7 @@ from the latter. Remaining content is compared for string equality."
(complement (comp :private meta val))))))
(keys)
(remove '#{.}))" ; emacs lisp chokes on the dot symbol
- nil nil t))))
+ nil t))))
(let (untested diffs)
(dolist (sym syms)
(let ((name (cond ((symbolp sym) (symbol-name sym))