From: antirez Date: Wed, 21 Dec 2011 08:23:22 +0000 (+0100) Subject: Redis test: when assertion fails print not just the expression but also expanded... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/202e3091d7554df42e520c3e6f7c6d54c1ad7728 Redis test: when assertion fails print not just the expression but also expanded values in the error message. --- diff --git a/tests/support/test.tcl b/tests/support/test.tcl index c875cfd8..e53d497b 100644 --- a/tests/support/test.tcl +++ b/tests/support/test.tcl @@ -5,7 +5,7 @@ set ::tests_failed {} proc assert {condition} { if {![uplevel 1 expr $condition]} { - error "assertion:Expected condition '$condition' to be true" + error "assertion:Expected condition '$condition' to be true ([uplevel 1 [list subst -nocommands $condition]])" } }