summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-08-25 20:04:38 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2018-08-25 20:04:38 +0200
commit5e7011e08b92bc2db234bf5862a4d0abce3fd5fd (patch)
treecf29132b20568982b035e48a7b686e463443b410
parent4d226ffee8459f7590ccfacf2dd4ef2ac695ccac (diff)
Fix a test
-rw-r--r--test/cider-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cider-tests.el b/test/cider-tests.el
index 36db4d82..f18c341b 100644
--- a/test/cider-tests.el
+++ b/test/cider-tests.el
@@ -79,7 +79,7 @@
(spy-on 'cider--identify-buildtools-present
:and-return-value '(build-tool1 build-tool2))
;; user choice build-tool2
- (spy-on 'completing-read :and-return-value 'build-tool2))
+ (spy-on 'completing-read :and-return-value "build-tool2"))
(it "returns the choice entered by user"
(expect (cider-project-type) :to-equal 'build-tool2))