fixed assert proc on Redis test

This commit is contained in:
antirez
2011-07-28 12:31:44 +02:00
parent 55eea93cae
commit ed9f997ce5

View File

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