diff options
author | fvogel <fvogelnew1@free.fr> | 2017-12-06 21:29:23 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2017-12-06 21:29:23 (GMT) |
commit | f8da473bda2259a310b19e2c23ac565d5f2fbdae (patch) | |
tree | 514a5bc7b694c8178db1fb406272e9c4c9ed0cdf /tests | |
parent | 570c8b28ab510a5244ca029530133e7ffb96e820 (diff) | |
download | tk-f8da473bda2259a310b19e2c23ac565d5f2fbdae.zip tk-f8da473bda2259a310b19e2c23ac565d5f2fbdae.tar.gz tk-f8da473bda2259a310b19e2c23ac565d5f2fbdae.tar.bz2 |
Fix [1088816fff]: Aqua tests fail (entry-13.10, entry-13.12)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/entry.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/entry.test b/tests/entry.test index d27ffb5..2fb699d 100644 --- a/tests/entry.test +++ b/tests/entry.test @@ -2570,7 +2570,7 @@ test entry-13.9 {GetEntryIndex procedure} -setup { -test entry-13.10 {GetEntryIndex procedure} -constraints unix -body { +test entry-13.10 {GetEntryIndex procedure} -constraints x11 -body { # On unix, when selection is cleared, entry widget's internal # selection range is reset. # Previous settings: @@ -2589,7 +2589,7 @@ test entry-13.10 {GetEntryIndex procedure} -constraints unix -body { destroy .e } -returnCodes error -result {selection isn't in widget .e} -test entry-13.11 {GetEntryIndex procedure} -constraints win -body { +test entry-13.11 {GetEntryIndex procedure} -constraints aquaOrWin32 -body { # On mac and pc, when selection is cleared, entry widget remembers # last selected range. When selection ownership is restored to # entry, the old range will be rehighlighted. @@ -2610,7 +2610,7 @@ test entry-13.11 {GetEntryIndex procedure} -constraints win -body { destroy .e } -result {1} -test entry-13.12 {GetEntryIndex procedure} -constraints unix -body { +test entry-13.12 {GetEntryIndex procedure} -constraints x11 -body { # Previous settings: entry .e -font {Courier -12} -width 5 -bd 2 -relief sunken pack .e |