diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2017-10-19 09:22:05 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2017-10-19 09:22:05 (GMT) |
commit | 252f75d8c8a95ffa59c91a4ed54881d09a72e137 (patch) | |
tree | daed44f93e262311fd9b9c7a1f3a5f68ec3d3d1f /tests | |
parent | 69030a86c83b4982c53feaaa0e46e5d235abb665 (diff) | |
download | tcl-252f75d8c8a95ffa59c91a4ed54881d09a72e137.zip tcl-252f75d8c8a95ffa59c91a4ed54881d09a72e137.tar.gz tcl-252f75d8c8a95ffa59c91a4ed54881d09a72e137.tar.bz2 |
Ensure that method list introspection finds methods from mixins in all cases. Use better approach for preventing excessive iteration.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/oo.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/oo.test b/tests/oo.test index 3a6d2d1..1ac6f37 100644 --- a/tests/oo.test +++ b/tests/oo.test @@ -3799,7 +3799,7 @@ test oo-35.4 {Bug 593baa032c: mixins list teardown} { oo::class create D {mixin B} namespace eval [info object namespace D] [list [namespace which B] destroy] } {} -test oo-35.5 {Bug } -setup { +test oo-35.5 {Bug 1a56550e96: introspectors must traverse mixin links correctly} -setup { oo::class create base { unexport destroy } |