diff options
author | jenglish <jenglish@flightlab.com> | 2007-03-08 20:30:46 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2007-03-08 20:30:46 (GMT) |
commit | 30ada06cf24bb0fc3068732d09f95ba6b706073d (patch) | |
tree | 8efe4ec33870c5cbe9cd63f0d9f750768f8ab1ae | |
parent | d250337943e05b2476890c7855fa428fb12a29b4 (diff) | |
download | tk-30ada06cf24bb0fc3068732d09f95ba6b706073d.zip tk-30ada06cf24bb0fc3068732d09f95ba6b706073d.tar.gz tk-30ada06cf24bb0fc3068732d09f95ba6b706073d.tar.bz2 |
test grid-21.7: Remove 'pack propagate . 0' call,
which was causing cascading failures in subsequent tests [Bug 1676770].
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tests/grid.test | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2007-03-08 Joe English <jenglish@users.sourceforge.net> + + * tests/grid.test(grid-21.7): Remove 'pack propagate . 0' call, + which was causing cascading failures in subsequent tests [Bug 1676770]. + 2007-03-07 Daniel Steffen <das@users.sourceforge.net> * generic/tkMain.c (Tk_MainEx): replicate macosx-specific code from diff --git a/tests/grid.test b/tests/grid.test index 0bdcf58..6d6af85 100644 --- a/tests/grid.test +++ b/tests/grid.test @@ -5,7 +5,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: grid.test,v 1.29 2007/02/25 04:30:31 pspjuth Exp $ +# RCS: @(#) $Id: grid.test,v 1.30 2007/03/08 20:30:47 jenglish Exp $ package require tcltest 2.1 eval tcltest::configure $argv @@ -1935,7 +1935,6 @@ test grid-21.7 {anchor} { frame .$i -bg gray -width 75 -height 50 -bd 2 -relief ridge grid .$i -in .f -row $i -column $i -sticky nswe } - pack propagate . 0 grid propagate .f 0 . configure -width 300 -height 250 |