@@ -507,7 +507,7 @@ If ELAPSED-TIME is provided it will be included in the summary."
507507 (ms (nrepl-dict-get elapsed " ms" )))
508508 (propertize (format " %s ms " ms) 'face 'font-lock-comment-face ))
509509 " " )
510- " \n " ))
510+ " \n " ))
511511 pairs))))
512512 (cider-insert " \n " )
513513 (cider-test-render-summary buffer summary elapsed-time)
@@ -567,16 +567,16 @@ The optional arg TEST denotes an individual test name."
567567 (ms (if ms
568568 (propertize (format " in %s ms " ms ) 'face 'font-lock-comment-face )
569569 " ." )))
570- (message (propertize
571- " %sRan %d assertions, in %d test functions. %d failures, %d errors%s"
572- 'face (cond ((not (zerop error )) 'cider-test-error-face )
573- ((not (zerop fail)) 'cider-test-failure-face )
574- (t 'cider-test-success-face )))
575- (concat (if (= 1 ns) ; ns count from summary
576- (cider-propertize (car (nrepl-dict-keys results)) 'ns )
577- (propertize (format " %d namespaces" ns) 'face 'default ))
578- (propertize " : " 'face 'default ))
579- test var fail error ms)))))
570+ (message (propertize
571+ " %sRan %d assertions, in %d test functions. %d failures, %d errors%s"
572+ 'face (cond ((not (zerop error )) 'cider-test-error-face )
573+ ((not (zerop fail)) 'cider-test-failure-face )
574+ (t 'cider-test-success-face )))
575+ (concat (if (= 1 ns) ; ns count from summary
576+ (cider-propertize (car (nrepl-dict-keys results)) 'ns )
577+ (propertize (format " %d namespaces" ns) 'face 'default ))
578+ (propertize " : " 'face 'default ))
579+ test var fail error ms)))))
580580
581581; ;; Test definition highlighting
582582; ;
0 commit comments