summaryrefslogtreecommitdiffstats
path: root/tests/ooNext2.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-05 20:45:04 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-05 20:45:04 (GMT)
commit66dd14a48053da5e5f4463d0d83b9e5480a9bd5e (patch)
treefdfb7d34ece5a2cbf6649301b15d2783356ff128 /tests/ooNext2.test
parentf2963d15d036e305300773f74a602c9c0a8c9229 (diff)
downloadtcl-66dd14a48053da5e5f4463d0d83b9e5480a9bd5e.zip
tcl-66dd14a48053da5e5f4463d0d83b9e5480a9bd5e.tar.gz
tcl-66dd14a48053da5e5f4463d0d83b9e5480a9bd5e.tar.bz2
TIP #581: Last possible master/slave -> parent/child changes, without affecting anything serious
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 84a2bdd..0ec7cdd 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
}
}