summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-01-31 20:18:22 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2016-01-31 20:18:22 +0200
commitaeb9651bf7f6d7568703d4c123566b3f9ad55b7d (patch)
tree74d6433e4296b18fb8ec4b6e2f1ba3d7765b2079 /test
parent68cdaaa3535dd7575809ff2390825dc1daf27d47 (diff)
[Fix #1458] Separate nREPL messages by connections instead of by
sessions This is still not ideal as the resulting buffer name is a bit ugly (it features the entire connection buffer name). Down the road we should extract only the relevant part of a connection buffer's name.
Diffstat (limited to 'test')
-rw-r--r--test/cider-selector-tests.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cider-selector-tests.el b/test/cider-selector-tests.el
index 30933abd..aec0e77b 100644
--- a/test/cider-selector-tests.el
+++ b/test/cider-selector-tests.el
@@ -49,9 +49,9 @@
(should (equal (current-buffer) b1)))))))
(ert-deftest test-cider-selector-m ()
- (noflet ((cider-current-messages-buffer () "*nrepl-messages session-id*"))
+ (noflet ((cider-current-messages-buffer () "*nrepl-messages conn-id*"))
(with-temp-buffer
- (rename-buffer "*nrepl-messages session-id*")
+ (rename-buffer "*nrepl-messages conn-id*")
(let ((b1 (current-buffer)))
(with-temp-buffer
(should (not (equal (current-buffer) b1)))