summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2018-04-30 19:01:56 (GMT)
committerfvogel <fvogelnew1@free.fr>2018-04-30 19:01:56 (GMT)
commit3bc06deb7af507dc30049291d999a36d83905952 (patch)
tree039a710200bcf90ab95f3c05d99738a40c800408
parent6f8b1791a5659b74ebf1dda6c2107dd4bb26cdc1 (diff)
downloadtk-3bc06deb7af507dc30049291d999a36d83905952.zip
tk-3bc06deb7af507dc30049291d999a36d83905952.tar.gz
tk-3bc06deb7af507dc30049291d999a36d83905952.tar.bz2
Work around [38e83e6ec9]: canvasText-1.11 fails on macOS
-rw-r--r--tests/canvText.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/canvText.test b/tests/canvText.test
index ff5e4b9..c04cb63 100644
--- a/tests/canvText.test
+++ b/tests/canvText.test
@@ -55,8 +55,8 @@ test canvText-1.10 {configuration options: good value for "stipple"} -body {
list [lindex [.c itemconfigure test -stipple] 4] [.c itemcget test -stipple]
} -result {gray50 gray50}
test canvasText-1.11 {configuration options: bad value for "stipple"} -body {
- .c itemconfigure test -stipple xyz
-} -returnCodes error -result {bitmap "xyz" not defined}
+ .c itemconfigure test -stipple abcxyz
+} -returnCodes error -result {bitmap "abcxyz" not defined}
test canvText-1.12 {configuration options: good value for "underline"} -body {
.c itemconfigure test -underline 0
list [lindex [.c itemconfigure test -underline] 4] [.c itemcget test -underline]