From 180e07b8c0fb63b437d5c5af72843e34f1cd5e4c Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 15 Dec 2010 11:04:04 +0100 Subject: [PATCH] fixed test rendering when test failed in non verbose mode --- tests/support/test.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/support/test.tcl b/tests/support/test.tcl index a9f2d76e..724646a3 100644 --- a/tests/support/test.tcl +++ b/tests/support/test.tcl @@ -83,7 +83,7 @@ proc colored_dot {tags passed} { if {$passed} { puts -nonewline "\033\[0;${colorcode};40m" } else { - puts -nonewline "\033\[0;40;${colorcode}m" + puts -nonewline "\033\[7;${colorcode};40m" } puts -nonewline $ch puts -nonewline "\033\[0m"