diff options
Diffstat (limited to 'tests/nre.test')
-rw-r--r-- | tests/nre.test | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/nre.test b/tests/nre.test index ef2802f..873eb14 100644 --- a/tests/nre.test +++ b/tests/nre.test @@ -9,7 +9,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: nre.test,v 1.6 2008/09/10 13:24:26 msofer Exp $ +# RCS: @(#) $Id: nre.test,v 1.7 2009/01/29 17:13:50 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -394,13 +394,11 @@ test nre-X.1 {eval in wrong interp} { set res [$i eval { set x {namespace children ::} set y [list namespace children ::] - namespace delete {*}[{*}$y] set j [interp create] + namespace delete {*}[{*}$y] $j eval {namespace delete {*}[namespace children ::]} namespace eval foo {} - set res [list [eval $x] [eval $y] [$j eval $x] [$j eval $y]] - interp delete $j - set res + list [eval $x] [eval $y] [$j eval $x] [$j eval $y] }] interp delete $i set res |