summaryrefslogtreecommitdiffstats
path: root/tests/namespace.test
diff options
context:
space:
mode:
authorpooryorick <com.digitalsmarties@pooryorick.com>2021-04-03 10:43:53 (GMT)
committerpooryorick <com.digitalsmarties@pooryorick.com>2021-04-03 10:43:53 (GMT)
commitaef7e169a724687ab05b72273b5a7fbc2fba22cc (patch)
tree7f640272318e9a5768c558b2ece022584ab15a5a /tests/namespace.test
parentc98ea4af2fac0552f8453c1787028523e1d19117 (diff)
downloadtcl-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.test4
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
} {}