diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-25 09:38:06 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-25 09:38:06 (GMT) |
commit | 6ef2d21d52bc57def14a5622bebe567983a2f515 (patch) | |
tree | 14f5d5f94ae71841de2b5483ef8d0a00bb67ae97 /tests/namespace.test | |
parent | fd0aa4c0fc372b3220a8c2af4ead3619f40d117b (diff) | |
parent | e7ff6cacbcb54ddb99776ccdebc712ac946e583b (diff) | |
download | tcl-6ef2d21d52bc57def14a5622bebe567983a2f515.zip tcl-6ef2d21d52bc57def14a5622bebe567983a2f515.tar.gz tcl-6ef2d21d52bc57def14a5622bebe567983a2f515.tar.bz2 |
Merge 8.6
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 64f237d..6eabf61 100644 --- a/tests/namespace.test +++ b/tests/namespace.test @@ -3409,15 +3409,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 * |