diff options
author | fvogel <fvogelnew1@free.fr> | 2017-12-08 23:06:45 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2017-12-08 23:06:45 (GMT) |
commit | b8f4b813b3abbae07d41e160310b87b44cea1b42 (patch) | |
tree | 63920e9b0a96e757d5d63a6d4d24e81f11571a9d /tests/entry.test | |
parent | bceb6edb7784c3b674d2b8fda0f5d61d75769cbe (diff) | |
parent | f8da473bda2259a310b19e2c23ac565d5f2fbdae (diff) | |
download | tk-b8f4b813b3abbae07d41e160310b87b44cea1b42.zip tk-b8f4b813b3abbae07d41e160310b87b44cea1b42.tar.gz tk-b8f4b813b3abbae07d41e160310b87b44cea1b42.tar.bz2 |
Fix [1088816fff]: Aqua tests fail (entry-13.10, entry-13.12)
Diffstat (limited to 'tests/entry.test')
-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 1474b25..fbaf6a5 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 |