diff options
author | fvogel <fvogelnew1@free.fr> | 2017-12-08 23:07:04 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2017-12-08 23:07:04 (GMT) |
commit | 736dc975d8470a1841b221c6d97bd6dc68ade3df (patch) | |
tree | 0eb0f4be5e3a7e1e23011d53f1c55c3e9df48609 | |
parent | fcceedef3357329ba5ef65a3b50a75692b777b43 (diff) | |
parent | b8f4b813b3abbae07d41e160310b87b44cea1b42 (diff) | |
download | tk-736dc975d8470a1841b221c6d97bd6dc68ade3df.zip tk-736dc975d8470a1841b221c6d97bd6dc68ade3df.tar.gz tk-736dc975d8470a1841b221c6d97bd6dc68ade3df.tar.bz2 |
Fix [1088816fff]: Aqua tests fail (entry-13.10, entry-13.12)
-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 0b0d533..e0fdb8d 100644 --- a/tests/entry.test +++ b/tests/entry.test @@ -2580,7 +2580,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: @@ -2599,7 +2599,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. @@ -2620,7 +2620,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 |