diff options
Diffstat (limited to 'tests/interp.test')
-rw-r--r-- | tests/interp.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/interp.test b/tests/interp.test index 90cb346..d55ac73 100644 --- a/tests/interp.test +++ b/tests/interp.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: interp.test,v 1.50 2006/10/12 16:24:14 msofer Exp $ +# RCS: @(#) $Id: interp.test,v 1.51 2006/11/03 00:34:52 hobbs Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2.1 @@ -2122,7 +2122,7 @@ test interp-26.6 {result code transmission: all combined--bug 1637} \ proc MyTestAlias {interp args} { global aliasTrace; lappend aliasTrace $args; - interp invokehidden $interp {expand}$args + interp invokehidden $interp {*}$args } foreach c {return} { interp hide $interp $c; |