summaryrefslogtreecommitdiff
path: root/cider-test.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2015-11-15 19:16:05 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2015-11-15 19:16:05 +0000
commit443a597a4a92e56b34431e94a4e063c373bd704e (patch)
tree3bbd1047e01b793ab38d66a90cd06b77f49ff879 /cider-test.el
parentda4a7cac4c82393cfbcce544e5f8971afbabbd46 (diff)
Ensure that the ": " doesn't get colored in cider-test-echo-summary
Diffstat (limited to 'cider-test.el')
-rw-r--r--cider-test.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/cider-test.el b/cider-test.el
index 6fa0a5de..0ea94298 100644
--- a/cider-test.el
+++ b/cider-test.el
@@ -332,7 +332,8 @@ With the actual value, the outermost '(not ...)' s-expression is removed."
'face (cond ((not (zerop error)) 'cider-test-error-face)
((not (zerop fail)) 'cider-test-failure-face)
(t 'cider-test-success-face)))
- (concat (propertize ns 'face 'font-lock-type-face) ": ")
+ (concat (propertize ns 'face 'font-lock-type-face)
+ (propertize ": " 'face 'default))
test fail error)))
;;; Test definition highlighting