summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2022-03-20 00:42:26 (GMT)
committerfvogel <fvogelnew1@free.fr>2022-03-20 00:42:26 (GMT)
commit9766f4bf7a56706470a3af0d04d991298839f777 (patch)
tree04e1e0ab1594f391cdf08ba050c13a34d174a8d6 /tests
parentaa91ace7c6a1eeb7025e95b4197f8f988753c842 (diff)
parent3aa5a3b049995a30bba527275f4a52d1885409d1 (diff)
downloadtk-9766f4bf7a56706470a3af0d04d991298839f777.zip
tk-9766f4bf7a56706470a3af0d04d991298839f777.tar.gz
tk-9766f4bf7a56706470a3af0d04d991298839f777.tar.bz2
Fix error in [68e5af70]: PARENT_RECONFIG_PENDING is a container flag, not a content flag.
Diffstat (limited to 'tests')
-rw-r--r--tests/canvWind.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/canvWind.test b/tests/canvWind.test
index 9777427..750321e 100644
--- a/tests/canvWind.test
+++ b/tests/canvWind.test
@@ -139,7 +139,7 @@ test canvWind-1.4 {DisplayWinItem, windows off-screen horizontally} -setup {
destroy .t
} -result {{1 3} {1 -79} {0 -79} {1 255} {0 255}}
-test canvWind-2.1 {DisplayWinItem, window gets destroyed duing <Configure>} -setup {
+test canvWind-2.1 {DisplayWinItem, window gets destroyed during <Configure>} -setup {
destroy .t
} -body {
toplevel .t
@@ -149,7 +149,7 @@ test canvWind-2.1 {DisplayWinItem, window gets destroyed duing <Configure>} -set
set id [.t.c create window 50 50 -window .t.c.f]
update
bind .t.c.f <Configure> {destroy .t.c.f}
- .t.c coords $id 60 60 ; # crashes!
+ .t.c coords $id 60 60 ; # was crashing
update
} -cleanup {
destroy .t