diff options
author | fvogel <fvogelnew1@free.fr> | 2017-12-10 16:59:56 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2017-12-10 16:59:56 (GMT) |
commit | 4d11467846cf69f11b3267552be071fc3c7ed9e4 (patch) | |
tree | f5208a7c8193dd118083b7fca873bbc507e9347a /tests | |
parent | e51bf66a34b5edfe96fcb4e877354e26273bb74a (diff) | |
parent | 1df3921c71ce35c1385a879ec82e02d48b9afac1 (diff) | |
download | tk-4d11467846cf69f11b3267552be071fc3c7ed9e4.zip tk-4d11467846cf69f11b3267552be071fc3c7ed9e4.tar.gz tk-4d11467846cf69f11b3267552be071fc3c7ed9e4.tar.bz2 |
spinbox-13.10 and -13.12 failed on macOS, and spinbox-13.11 was not exercised
Diffstat (limited to 'tests')
-rw-r--r-- | tests/spinbox.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/spinbox.test b/tests/spinbox.test index 6df9028..eeb4ae1 100644 --- a/tests/spinbox.test +++ b/tests/spinbox.test @@ -2881,7 +2881,7 @@ test spinbox-13.9 {GetSpinboxIndex procedure} -setup { destroy .e } -result {1 6} -test spinbox-13.10 {GetSpinboxIndex procedure} -constraints unix -body { +test spinbox-13.10 {GetSpinboxIndex procedure} -constraints x11 -body { # On unix, when selection is cleared, spinbox widget's internal # selection range is reset. # Previous settings: @@ -2900,7 +2900,7 @@ test spinbox-13.10 {GetSpinboxIndex procedure} -constraints unix -body { destroy .e } -returnCodes error -result {selection isn't in widget .e} -test spinbox-13.11 {GetSpinboxIndex procedure} -constraints win -body { +test spinbox-13.11 {GetSpinboxIndex procedure} -constraints aquaOrWin32 -body { # On mac and pc, when selection is cleared, spinbox widget remembers # last selected range. When selection ownership is restored to # spinbox, the old range will be rehighlighted. @@ -2921,7 +2921,7 @@ test spinbox-13.11 {GetSpinboxIndex procedure} -constraints win -body { destroy .e } -result {1} -test spinbox-13.12 {GetSpinboxIndex procedure} -constraints unix -body { +test spinbox-13.12 {GetSpinboxIndex procedure} -constraints x11 -body { # Previous settings: spinbox .e -font {Courier -12} -width 5 -bd 2 -relief sunken pack .e |