diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-01-07 11:58:07 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-01-07 11:58:07 (GMT) |
commit | 71959308ac3589a49cde993adf47ef762cf8d8b9 (patch) | |
tree | 734c2887ae3e5e3e8c9e554587d90325ff7c00dc /tests/oo.test | |
parent | 0d8f0efadcd9ffe199a532212c3e34cc1081c50f (diff) | |
download | tcl-71959308ac3589a49cde993adf47ef762cf8d8b9.zip tcl-71959308ac3589a49cde993adf47ef762cf8d8b9.tar.gz tcl-71959308ac3589a49cde993adf47ef762cf8d8b9.tar.bz2 |
Narrow the focus of a failing test so that it succeeds (by only testing that
which is supposed to be tested...)
Diffstat (limited to 'tests/oo.test')
-rw-r--r-- | tests/oo.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/oo.test b/tests/oo.test index 0505ddd..b7029ea 100644 --- a/tests/oo.test +++ b/tests/oo.test @@ -7,7 +7,7 @@ # See the file "license.terms" for information on usage and redistribution of # this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: oo.test,v 1.19 2009/01/06 14:30:19 dkf Exp $ +# RCS: @(#) $Id: oo.test,v 1.20 2009/01/07 11:58:08 dkf Exp $ package require TclOO 0.6.1 ;# Must match value in generic/tclOO.h if {[lsearch [namespace children] ::tcltest] == -1} { @@ -1810,7 +1810,7 @@ test oo-22.1 {OO and info frame} -setup { list [i level] [i frames] [dict get [c frame] object] } -cleanup { c destroy -} -result {1 {{type source line * file * cmd {info frame 0} method frames class ::c level 0} {type source line * file * cmd {info frame 0} method frames object ::i level 0}} ::c} +} -result {1 {{* cmd {info frame 0} method frames class ::c level 0} {* cmd {info frame 0} method frames object ::i level 0}} ::c} # Prove that the issue in [Bug 1865054] isn't an issue any more test oo-23.1 {Self-like derivation; complex case!} -setup { |