branch: elpa/cider
commit 84256b5c05d7338103218ac1ff5c3986141279f4
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>

    Fix several small indentation problems
---
 lisp/cider-test.el | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/lisp/cider-test.el b/lisp/cider-test.el
index 0298be0d3d8..835ce0f30cd 100644
--- a/lisp/cider-test.el
+++ b/lisp/cider-test.el
@@ -507,7 +507,7 @@ If ELAPSED-TIME is provided it will be included in the 
summary."
                                                       (ms (nrepl-dict-get 
elapsed "ms")))
                                             (propertize (format " %s ms" ms) 
'face 'font-lock-comment-face))
                                           "")
-                "\n"))
+                                      "\n"))
                             pairs))))
       (cider-insert "\n")
       (cider-test-render-summary buffer summary elapsed-time)
@@ -567,16 +567,16 @@ The optional arg TEST denotes an individual test name."
              (ms (if ms
                      (propertize (format " in %s ms" ms ) 'face 
'font-lock-comment-face)
                    ".")))
-      (message (propertize
-                "%sRan %d assertions, in %d test functions. %d failures, %d 
errors%s"
-                'face (cond ((not (zerop error)) 'cider-test-error-face)
-                            ((not (zerop fail))  'cider-test-failure-face)
-                            (t                   'cider-test-success-face)))
-               (concat (if (= 1 ns)     ; ns count from summary
-                           (cider-propertize (car (nrepl-dict-keys results)) 
'ns)
-                         (propertize (format "%d namespaces" ns) 'face 
'default))
-                       (propertize ": " 'face 'default))
-               test var fail error ms)))))
+        (message (propertize
+                  "%sRan %d assertions, in %d test functions. %d failures, %d 
errors%s"
+                  'face (cond ((not (zerop error)) 'cider-test-error-face)
+                              ((not (zerop fail))  'cider-test-failure-face)
+                              (t                   'cider-test-success-face)))
+                 (concat (if (= 1 ns)     ; ns count from summary
+                             (cider-propertize (car (nrepl-dict-keys results)) 
'ns)
+                           (propertize (format "%d namespaces" ns) 'face 
'default))
+                         (propertize ": " 'face 'default))
+                 test var fail error ms)))))
 
 ;;; Test definition highlighting
 ;;

Reply via email to