diff options
author | pooryorick <com.digitalsmarties@pooryorick.com> | 2021-04-03 10:43:53 (GMT) |
---|---|---|
committer | pooryorick <com.digitalsmarties@pooryorick.com> | 2021-04-03 10:43:53 (GMT) |
commit | aef7e169a724687ab05b72273b5a7fbc2fba22cc (patch) | |
tree | 7f640272318e9a5768c558b2ece022584ab15a5a /tests/namespace.test | |
parent | c98ea4af2fac0552f8453c1787028523e1d19117 (diff) | |
download | tcl-aef7e169a724687ab05b72273b5a7fbc2fba22cc.zip tcl-aef7e169a724687ab05b72273b5a7fbc2fba22cc.tar.gz tcl-aef7e169a724687ab05b72273b5a7fbc2fba22cc.tar.bz2 |
Remove suspected inadvertent copypasta from test.
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 3394824..679b468 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 } {} |