diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-05 20:45:04 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-05 20:45:04 (GMT) |
commit | 66dd14a48053da5e5f4463d0d83b9e5480a9bd5e (patch) | |
tree | fdfb7d34ece5a2cbf6649301b15d2783356ff128 /tests/ooNext2.test | |
parent | f2963d15d036e305300773f74a602c9c0a8c9229 (diff) | |
download | tcl-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.test | 8 |
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 } } |