diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-25 09:48:11 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-25 09:48:11 (GMT) |
commit | 60bb48a1c2a0656fe9a8c17faad9a7155eefc17c (patch) | |
tree | 769b64fcd38b8704f5ba9cfab12682e1ed23ab7d /tests/namespace.test | |
parent | db0dc8c2b957416f3420435c986026c0d23f9db4 (diff) | |
parent | 6ef2d21d52bc57def14a5622bebe567983a2f515 (diff) | |
download | tcl-60bb48a1c2a0656fe9a8c17faad9a7155eefc17c.zip tcl-60bb48a1c2a0656fe9a8c17faad9a7155eefc17c.tar.gz tcl-60bb48a1c2a0656fe9a8c17faad9a7155eefc17c.tar.bz2 |
Merge 8.7
Diffstat (limited to 'tests/namespace.test')
-rw-r--r-- | tests/namespace.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/namespace.test b/tests/namespace.test index 599e1e7..2d0c20f 100644 --- a/tests/namespace.test +++ b/tests/namespace.test @@ -3421,15 +3421,15 @@ test namespace-56.6 { Namespace deletion traces on both the original routine and the imported routine should run without any memory error under a debug build. } -body { - variable res {} + variable res {} proc ondelete {old new op} { variable res - set tail [namespace tail $old] + set tail [namespace tail $old] set up [namespace tail [namespace qualifiers $old]] lappend res [list $up $tail] } - + namespace eval ns1 {} { namespace export * |