diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-13 18:58:37 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-13 18:58:37 (GMT) |
commit | 9dd9285067b77e023ef74ecd957e5e6bba9d699f (patch) | |
tree | 4106f3c17b3dd6d3bb020de079ab7b71fefea4f4 | |
parent | a7d73c91307241062ca877837477e951e45c4875 (diff) | |
download | tk-9dd9285067b77e023ef74ecd957e5e6bba9d699f.zip tk-9dd9285067b77e023ef74ecd957e5e6bba9d699f.tar.gz tk-9dd9285067b77e023ef74ecd957e5e6bba9d699f.tar.bz2 |
Fix pack/place testcases on Unix. Follow-up to [f68fa7edd10d0b17]
-rw-r--r-- | tests/pack.test | 2 | ||||
-rw-r--r-- | tests/place.test | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/pack.test b/tests/pack.test index b86fa34..f365959 100644 --- a/tests/pack.test +++ b/tests/pack.test @@ -1551,7 +1551,7 @@ test pack-17.2 {PackLostContentProc procedure} -setup { pack info .pack.a } -returnCodes error -result {window ".pack.a" isn't packed} -if {[tk windowingsystem] == "win32"} { +if {[tk windowingsystem] ne "aqua"} { proc packUpdate {} { update } diff --git a/tests/place.test b/tests/place.test index 5813ac5..a809095 100644 --- a/tests/place.test +++ b/tests/place.test @@ -261,7 +261,7 @@ test place-7.10 {ReconfigurePlacement procedure, computing size} -setup { list [winfo width .t.f2] [winfo height .t.f2] } -result {30 60} -if {[tk windowingsystem] == "win32"} { +if {[tk windowingsystem] ne "aqua"} { proc placeUpdate {} { update } |