summaryrefslogtreecommitdiffstats
path: root/tests/ttk/checkbutton.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ttk/checkbutton.test')
-rw-r--r--tests/ttk/checkbutton.test16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/ttk/checkbutton.test b/tests/ttk/checkbutton.test
index 6b79287..e18ff32 100644
--- a/tests/ttk/checkbutton.test
+++ b/tests/ttk/checkbutton.test
@@ -45,20 +45,4 @@ test checkbutton-1.6 "Checkbutton default variable" -body {
lappend result [info exists .cb] [set .cb] [.cb state]
} -result [list .cb 0 alternate 1 on selected 1 off {}]
-# Bug [109865fa01]
-test checkbutton-1.7 "Button destroyed by click" -body {
- proc destroy_button {} {
- destroy .top
- }
- toplevel .top
- ttk::menubutton .top.mb -text Button -style TLabel
- bind .top.mb <ButtonRelease-1> destroy_button
- pack .top.mb
- focus -force .top.mb
- update
- event generate .top.mb <1>
- event generate .top.mb <ButtonRelease-1>
- update ; # shall not trigger error invalid command name ".top.b"
-} -result {}
-
tcltest::cleanupTests