(testsuite) assert_exec() default test title grammar fix.

This commit is contained in:
Ville Skyttä 2010-01-14 20:19:35 +02:00
parent 1fe72c982e
commit 51a772f99f

View File

@ -397,7 +397,7 @@ proc assert_env_unmodified {{sed ""} {file ""} {diff ""}} {
# @param string $test (optional) Test title
# @see assert_bash_exec()
proc assert_exec {cmd {stdout ''} {test ''}} {
if {$test == ""} {set test "$cmd should execute successful"}
if {$test == ""} {set test "$cmd should execute successfully"}
upvar $stdout results
set status [catch {eval exec $cmd} results]
if {$status == 0} {