We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e586da commit 5801074Copy full SHA for 5801074
test/cider-tests.el
@@ -275,14 +275,14 @@
275
(should (string= (cider--connection-info (current-buffer))
276
"CLJ <no project>@localhost:4005 (Java 1.7, Clojure 1.5.1, nREPL 0.2.1)")))))
277
278
-(ert-deftest test-nrepl-close ()
+(ert-deftest test-cider--close-connection-buffer ()
279
(let ((connections (cider-connections)))
280
(cider-test-with-buffers
281
(a b)
282
(cider-make-connection-default a)
283
(cider-make-connection-default b)
284
;; closing a buffer should see it removed from the connection list
285
- (nrepl-close a)
+ (cider--close-connection-buffer a)
286
(should (not (buffer-live-p a)))
287
(should (equal (cons b connections)
288
(cider-connections)))
0 commit comments