diff options
author | fvogel <fvogel@noemail.net> | 2015-12-10 17:11:23 (GMT) |
---|---|---|
committer | fvogel <fvogel@noemail.net> | 2015-12-10 17:11:23 (GMT) |
commit | 917c9842b8a3e1c9f158ed1047e799f034846180 (patch) | |
tree | 1bbc1f0d104c9cddd73f651c6ea4511f465b1b40 | |
parent | 63339cf898055906de1aae26c6644ca83c66c3db (diff) | |
parent | ef02ea088678458781fe7f861e59c2b7cf04c0ec (diff) | |
download | tk-917c9842b8a3e1c9f158ed1047e799f034846180.zip tk-917c9842b8a3e1c9f158ed1047e799f034846180.tar.gz tk-917c9842b8a3e1c9f158ed1047e799f034846180.tar.bz2 |
Removed duplicate test: 'entry-23.1' in spinbox.test is the same as 'entry-21.1' in entry.test
FossilOrigin-Name: aaf6b1a3a0d1a411306427e1562b9a734f8e50c5
-rw-r--r-- | tests/spinbox.test | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/spinbox.test b/tests/spinbox.test index b8170c5..0f41379 100644 --- a/tests/spinbox.test +++ b/tests/spinbox.test @@ -3775,22 +3775,6 @@ test spinbox-22.3 {spinbox config, -from changes SF bug 559078} -body { destroy .e } -result {6} -test spinbox-23.1 {selection present while disabled, bug 637828} -body { - spinbox .e - .e insert end 0123456789 - .e select from 3 - .e select to 6 - set out [.e selection present] - .e configure -state disabled -# still return 1 when disabled, because 'selection get' will work, -# but selection cannot be changed (new behavior since 8.4) - .e select to 9 - lappend out [.e selection present] [selection get] -} -cleanup { - destroy .e -} -result {1 1 345} - - # Collected comments about lacks from the test # XXX Still need to write tests for SpinboxBlinkProc, SpinboxFocusProc, # and SpinboxTextVarProc. |