summaryrefslogtreecommitdiffstats
path: root/tests/grid.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-03 20:45:19 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-03 20:45:19 (GMT)
commit1a1f6bb851a8f05fd555d9e28bc01edea61adef5 (patch)
treed2ec5c7ee367cb99fde43021fb976b73dc6ab55f /tests/grid.test
parent769c871f62cd237acec5479e978538048a44ffa7 (diff)
downloadtk-1a1f6bb851a8f05fd555d9e28bc01edea61adef5.zip
tk-1a1f6bb851a8f05fd555d9e28bc01edea61adef5.tar.gz
tk-1a1f6bb851a8f05fd555d9e28bc01edea61adef5.tar.bz2
Consolidate Tk 8.7 error-messages regarding TIP #581. More Master -> Container related (internal) changes
Diffstat (limited to 'tests/grid.test')
-rw-r--r--tests/grid.test10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/grid.test b/tests/grid.test
index 7651193..22a2214 100644
--- a/tests/grid.test
+++ b/tests/grid.test
@@ -63,10 +63,10 @@ test grid-1.5 {basic argument checking} -body {
} -returnCodes error -result {can't manage ".": it's a top-level window}
test grid-1.6 {basic argument checking} -body {
grid x
-} -returnCodes error -result {can't determine master window}
+} -returnCodes error -result {can't determine container window}
test grid-1.7 {basic argument checking} -body {
grid configure x
-} -returnCodes error -result {can't determine master window}
+} -returnCodes error -result {can't determine container window}
test grid-1.8 {basic argument checking} -body {
button .b
grid x .b
@@ -856,13 +856,13 @@ test grid-11.1 {default widget placement} -body {
grid ^
} -cleanup {
grid_reset 11.1
-} -returnCodes error -result {can't use '^', cant find master}
+} -returnCodes error -result {can't use '^', can't find container window}
test grid-11.2 {default widget placement} -body {
button .b
grid .b ^
} -cleanup {
grid_reset 11.2
-} -returnCodes error -result {can't find slave to extend with "^"}
+} -returnCodes error -result {can't find content to extend with "^"}
test grid-11.3 {default widget placement} -body {
button .b
grid .b - - .c
@@ -917,7 +917,7 @@ test grid-11.9 {default widget placement} -body {
grid .f x ^
} -cleanup {
grid_reset 11.9
-} -returnCodes error -result {can't find slave to extend with "^"}
+} -returnCodes error -result {can't find content to extend with "^"}
test grid-11.10 {default widget placement} -body {
foreach i {1 2 3} {
frame .f$i -width 100 -height 50 -highlightthickness 0 -bg red