fixed assert proc on Redis test

This commit is contained in:
antirez 2011-07-28 12:31:44 +02:00
parent 80e87a461a
commit e54484876a

View File

@ -5,7 +5,7 @@ set ::tests_failed {}
proc assert {condition} { proc assert {condition} {
if {![uplevel 1 expr $condition]} { if {![uplevel 1 expr $condition]} {
error "assertion:Expected '$value' to be true" error "assertion:Expected condition '$condition' to be true"
} }
} }