summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2019-01-05 13:18:09 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2019-01-05 13:18:09 +0200
commitd50e1faf27e99334527a984aeed959bea2bbf151 (patch)
tree21c9119030be4cb93471a18cefdf7d8739713a62
parenta4ed7a4152f8a6514dd3fd82532aa5a2bdba024f (diff)
Fix the broken build
-rw-r--r--test/clojure-mode-indentation-test.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/clojure-mode-indentation-test.el b/test/clojure-mode-indentation-test.el
index 613e692..7c71f11 100644
--- a/test/clojure-mode-indentation-test.el
+++ b/test/clojure-mode-indentation-test.el
@@ -238,14 +238,14 @@ values of customisable variables."
(declare (indent 1))
(when (stringp style)
(setq forms (cons style forms))
- (setq style 'always-align))
+ (setq style '(quote always-align)))
`(ert-deftest ,(intern (format "test-backtracking-%s" name)) ()
(progn
,@(mapcar (lambda (form)
`(with-temp-buffer
(clojure-mode)
(insert "\n" ,(replace-regexp-in-string "\n +" "\n " form))
- (let ((clojure-indent-style (quote ,style)))
+ (let ((clojure-indent-style ,style))
(indent-region (point-min) (point-max)))
(should (equal (buffer-string)
,(concat "\n" form)))))