summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@tradeo.com>2014-12-23 16:13:31 +0200
committerBozhidar Batsov <bozhidar@tradeo.com>2014-12-23 16:13:31 +0200
commit0f6c757dad984d3149d15427c82691b31e6d670a (patch)
tree75c1bcea5ca147e53de90dfec7f9a94cd72a82ed /test
parent725ee47ac466b36ea159f6b75bbaa24afe878b16 (diff)
Replace nrepl-buffer-ns with cider-buffer-ns
Diffstat (limited to 'test')
-rw-r--r--test/cider-tests.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/cider-tests.el b/test/cider-tests.el
index baf82790..88c6ec9a 100644
--- a/test/cider-tests.el
+++ b/test/cider-tests.el
@@ -152,9 +152,9 @@
(cider--nrepl-version () "0.2.1"))
(setq-local nrepl-endpoint '("localhost" 4005))
(setq-local nrepl-project-dir "proj")
- (setq-local nrepl-buffer-ns "somens")
+ (setq-local cider-buffer-ns "some-ns")
(should (string= (cider--connection-info (buffer-name (current-buffer)))
- "Active nREPL connection: proj:somens, localhost:4005 (Java 1.7, Clojure 1.5.1, nREPL 0.2.1)")))))
+ "Active nREPL connection: proj:some-ns, localhost:4005 (Java 1.7, Clojure 1.5.1, nREPL 0.2.1)")))))
(ert-deftest test-cider-current-connection-info-no-project ()
(with-temp-buffer
@@ -162,9 +162,9 @@
(cider--clojure-version () "1.5.1")
(cider--nrepl-version () "0.2.1"))
(setq-local nrepl-endpoint '("localhost" 4005))
- (setq-local nrepl-buffer-ns "somens")
+ (setq-local cider-buffer-ns "some-ns")
(should (string= (cider--connection-info (buffer-name (current-buffer)))
- "Active nREPL connection: <no project>:somens, localhost:4005 (Java 1.7, Clojure 1.5.1, nREPL 0.2.1)")))))
+ "Active nREPL connection: <no project>:some-ns, localhost:4005 (Java 1.7, Clojure 1.5.1, nREPL 0.2.1)")))))
(ert-deftest test-nrepl-close ()
(let ((connections (nrepl-connection-buffers)))