diff options
author | dgp <dgp@users.sourceforge.net> | 2005-12-01 18:31:42 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-12-01 18:31:42 (GMT) |
commit | 277158cf072d9b7124bc4fb69806afac0a0b998c (patch) | |
tree | b33e795f5a24dae1e091df33e8219c946033da84 /tests | |
parent | f68d0a0e2f46385c06b1a65863da5d99e42c1abb (diff) | |
download | tk-277158cf072d9b7124bc4fb69806afac0a0b998c.zip tk-277158cf072d9b7124bc4fb69806afac0a0b998c.tar.gz tk-277158cf072d9b7124bc4fb69806afac0a0b998c.tar.bz2 |
2005-11-16 Don Porter <dgp@users.sourceforge.net>
*** 8.4.12 TAGGED FOR RELEASE ***
* changes: Update changes for 8.4.12 release
* mac/tkMacWm.c: Restored consistent error checking and
* macosx/tkMacOSXWm.c: messages among different platform's
* tests/wm.test: [wm grid] commands. [Bug 1323972].
* win/tkWinWm.c:
Diffstat (limited to 'tests')
-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 7313891..e34d58d 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.21.2.5 2005/10/10 15:19:41 patthoyts Exp $ +# RCS: @(#) $Id: wm.test,v 1.21.2.6 2005/12/01 18:31:43 dgp Exp $ # This file tests window manager interactions that work across # platforms. Window manager tests that only work on a specific @@ -404,11 +404,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 {} |