summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2015-12-10 17:07:13 (GMT)
committerfvogel <fvogelnew1@free.fr>2015-12-10 17:07:13 (GMT)
commit4ffa86ad7e16a62ad85e9fcaeeeeec8b054b66e3 (patch)
tree97db6917b56fefc7e48bc3f569d85bb75d9dc68f /tests
parente82200cb0ca4389ea75f8ae0c2096358a985c14e (diff)
downloadtk-4ffa86ad7e16a62ad85e9fcaeeeeec8b054b66e3.zip
tk-4ffa86ad7e16a62ad85e9fcaeeeeec8b054b66e3.tar.gz
tk-4ffa86ad7e16a62ad85e9fcaeeeeec8b054b66e3.tar.bz2
Removed duplicate test: 'entry-23.1' in spinbox.test is the same as 'entry-21.1' in entry.test
Diffstat (limited to 'tests')
-rw-r--r--tests/spinbox.test14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/spinbox.test b/tests/spinbox.test
index 430e176..88e4d44 100644
--- a/tests/spinbox.test
+++ b/tests/spinbox.test
@@ -1568,20 +1568,6 @@ test spinbox-22.3 {spinbox config, -from changes SF bug 559078} {
set val
} {6}
-test entry-23.1 {selection present while disabled, bug 637828} {
- destroy .e
- entry .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]
-} {1 1 345}
-
destroy .e
catch {unset ::e ::vVals}