summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2015-11-06 14:47:25 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2015-11-06 14:47:25 +0000
commit42e1125a043ad6db262ebd2df65e4f7808f712ce (patch)
treea5b6ad72b6ae5fd31ac2a9b3ed3179124e41956d /test
parentfe4ec93ba69f15b50b676f6f940ac8d9d0803533 (diff)
Fix a broken test and improve cider--connection-pp
Diffstat (limited to 'test')
-rw-r--r--test/cider-tests.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/cider-tests.el b/test/cider-tests.el
index 9cfc4370..da2c7ac9 100644
--- a/test/cider-tests.el
+++ b/test/cider-tests.el
@@ -299,8 +299,8 @@
(with-current-buffer "*cider-connections*"
(should (equal " REPL Host Port Project
-* *cider-repl test1* localhost 4005 proj
- *cider-repl test2* 123.123.123.123 4006 \n\n"
+* *cider-repl test1* localhost 4005 proj clj
+ *cider-repl test2* 123.123.123.123 4006 clj\n\n"
(buffer-string)))
(goto-line 4) ; somewhere in the second connection listed
(cider-connections-make-default)
@@ -308,15 +308,15 @@
(message "%s" (cider-connections))
(should (equal " REPL Host Port Project
- *cider-repl test1* localhost 4005 proj
-* *cider-repl test2* 123.123.123.123 4006 \n\n"
+ *cider-repl test1* localhost 4005 proj clj
+* *cider-repl test2* 123.123.123.123 4006 clj\n\n"
(buffer-string)))
(goto-line 4) ; somewhere in the second connection listed
(cider-connections-close-connection)
(should (equal (list b1) cider-connections))
(should (equal " REPL Host Port Project
-* *cider-repl test1* localhost 4005 proj\n\n"
+* *cider-repl test1* localhost 4005 proj clj\n\n"
(buffer-string)))
(cider-connections-goto-connection)
(should (equal b1 (current-buffer)))