summaryrefslogtreecommitdiff
path: root/tests/support/test.tcl
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-12-15 11:04:04 +0100
committerantirez <antirez@gmail.com>2010-12-15 11:04:04 +0100
commit180e07b8c0fb63b437d5c5af72843e34f1cd5e4c (patch)
tree5554981778ad13ef73dac3b2dd259dde71b9ef58 /tests/support/test.tcl
parent7982173fef8bd6de9805e782edb9aa827184b010 (diff)
downloadredis-180e07b8c0fb63b437d5c5af72843e34f1cd5e4c.tar.gz
fixed test rendering when test failed in non verbose mode
Diffstat (limited to 'tests/support/test.tcl')
-rw-r--r--tests/support/test.tcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/support/test.tcl b/tests/support/test.tcl
index a9f2d76e8..724646a3a 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"