diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-04 14:43:09 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-04 14:43:09 (GMT) |
commit | 8050513a3135b2822a0d60bf2e42f4618cb3c015 (patch) | |
tree | 0c008b236551515c94588242fe64973bde1b2cdb /tests/namespace.test | |
parent | 8b11f08b3cb7e5e92dd7812df02e8419e49be96d (diff) | |
parent | 226bb13f4e093299c9d975ebd16c6cacb4af6356 (diff) | |
download | tcl-8050513a3135b2822a0d60bf2e42f4618cb3c015.zip tcl-8050513a3135b2822a0d60bf2e42f4618cb3c015.tar.gz tcl-8050513a3135b2822a0d60bf2e42f4618cb3c015.tar.bz2 |
Merge 8.7
Diffstat (limited to 'tests/namespace.test')
-rw-r--r-- | tests/namespace.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/namespace.test b/tests/namespace.test index 679b468..3394824 100644 --- a/tests/namespace.test +++ b/tests/namespace.test @@ -3301,8 +3301,8 @@ test namespace-56.2 {bug f97d4ee020: mutually-entangled deletion} { namespace eval ::testing { namespace eval abc {proc xyz {} {}} namespace eval def {proc xyz {} {}} - trace add command abc::xyz delete "namespace delete ::testing::def; #" - trace add command def::xyz delete "namespace delete ::testing::abc; #" + trace add command abc::xyz delete "namespace delete ::testing::def {}; #" + trace add command def::xyz delete "namespace delete ::testing::abc {}; #" } namespace delete ::testing } {} |