summaryrefslogtreecommitdiffstats
path: root/tests/ooNext2.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-01 10:33:33 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-01 10:33:33 (GMT)
commitd99566171273e05f659f3f4f364b9d1948ec8565 (patch)
treec4a99a3ac584ca9f6609ca8575261cf7b3d419a0 /tests/ooNext2.test
parentd52b3eef8055623bab469007083629a4e134955b (diff)
parent724de352e37dd0fe795024353378cd662593b4a6 (diff)
downloadtcl-d99566171273e05f659f3f4f364b9d1948ec8565.zip
tcl-d99566171273e05f659f3f4f364b9d1948ec8565.tar.gz
tcl-d99566171273e05f659f3f4f364b9d1948ec8565.tar.bz2
Merge 8.6
Diffstat (limited to 'tests/ooNext2.test')
-rw-r--r--tests/ooNext2.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ooNext2.test b/tests/ooNext2.test
index 6a48d28..59925e7 100644
--- a/tests/ooNext2.test
+++ b/tests/ooNext2.test
@@ -882,9 +882,9 @@ test oo-call-3.4 {current call introspection: in destructors} -setup {
# caller
set testopts {
-setup {
- oo::class create Master
+ oo::class create Parent
oo::class create Foo {
- superclass Master
+ superclass Parent
method bar {} {
puts abc
tailcall puts hi
@@ -892,11 +892,11 @@ set testopts {
}
}
oo::class create Foo2 {
- superclass Master
+ superclass Parent
}
}
-cleanup {
- Master destroy
+ Parent destroy
}
}