summaryrefslogtreecommitdiff
path: root/test/cider-selector-tests.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@tradeo.com>2014-05-27 18:24:57 +0300
committerBozhidar Batsov <bozhidar@tradeo.com>2014-05-27 18:24:57 +0300
commit3362245be5adcbc45aad532e8d44a6e055603407 (patch)
treec1698747f716bdf570248aa4f0b9ac53b79821cb /test/cider-selector-tests.el
parent2420a74c59aa8053b59ec256c9098d91f43826ce (diff)
Fix broken tests
Diffstat (limited to 'test/cider-selector-tests.el')
-rw-r--r--test/cider-selector-tests.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cider-selector-tests.el b/test/cider-selector-tests.el
index e8e7e099..ebc4ef35 100644
--- a/test/cider-selector-tests.el
+++ b/test/cider-selector-tests.el
@@ -47,11 +47,11 @@
(cider-invoke-selector-method-by-key ?e)
(should (equal (current-buffer) b1)))))))
-(ert-deftest test-cider-selector-v ()
+(ert-deftest test-cider-selector-m ()
(with-temp-buffer
- (rename-buffer "*nrepl-events*")
+ (rename-buffer "*nrepl-messages*")
(let ((b1 (current-buffer)))
(with-temp-buffer
(should (not (equal (current-buffer) b1)))
- (cider-invoke-selector-method-by-key ?v)
+ (cider-invoke-selector-method-by-key ?m)
(should (equal (current-buffer) b1))))))