diff options
author | jenglish <jenglish@flightlab.com> | 2004-06-16 20:03:18 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2004-06-16 20:03:18 (GMT) |
commit | c5b74b100d335256f82be758f49ce8425fe2ac18 (patch) | |
tree | d316493e03f85b97a1a55f3bf4a198db5c79bfbc /tests/wm.test | |
parent | 55c614a8ed08c8dcb23312b958ed1756d9b9fd17 (diff) | |
download | tk-c5b74b100d335256f82be758f49ce8425fe2ac18.zip tk-c5b74b100d335256f82be758f49ce8425fe2ac18.tar.gz tk-c5b74b100d335256f82be758f49ce8425fe2ac18.tar.bz2 |
Fix for #742882 "Potential division by zero in gridded wm geometry"
Diffstat (limited to 'tests/wm.test')
-rw-r--r-- | tests/wm.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/wm.test b/tests/wm.test index 24a8ee2..e8f2c48 100644 --- a/tests/wm.test +++ b/tests/wm.test @@ -7,7 +7,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: wm.test,v 1.25 2004/05/23 17:34:50 dkf Exp $ +# RCS: @(#) $Id: wm.test,v 1.26 2004/06/16 20:03:19 jenglish Exp $ # This file tests window manager interactions that work across # platforms. Window manager tests that only work on a specific @@ -393,11 +393,11 @@ test wm-grid-1.10 {usage} { test wm-grid-1.11 {usage} { list [catch {wm grid . 13 14 -1 16} msg] $msg -} {1 {widthInc can't be < 0}} +} {1 {widthInc can't be <= 0}} test wm-grid-1.12 {usage} { list [catch {wm grid . 13 14 15 -1} msg] $msg -} {1 {heightInc can't be < 0}} +} {1 {heightInc can't be <= 0}} test wm-grid-2.1 {setting and reading values} { set result {} |