diff options
Diffstat (limited to 'tests/trace.test')
-rw-r--r-- | tests/trace.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/trace.test b/tests/trace.test index 64c9111..16c858c 100644 --- a/tests/trace.test +++ b/tests/trace.test @@ -1695,7 +1695,7 @@ test trace-21.12 {bug 2438181} -setup { trace add execution set2 leave {puts one two three #;} } -body { set2 a hello -} -returnCodes 1 -result {wrong # args: should be "puts ?-nonewline? ?channelId? string"} +} -returnCodes 1 -result {wrong # args: should be "puts ?-nonewline? ?channel? string"} proc factorial {n} { if {$n != 1} { return [expr {$n * [factorial [expr {$n -1 }]]}] } |