diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-14 08:01:13 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-14 08:01:13 (GMT) |
commit | 19013242170fcb53f480c10a5ca48578456d2f1b (patch) | |
tree | be5c772816c7e4b5d974c569ca9b844d9c8261c9 /tests/imgBmap.test | |
parent | 075429fc2cc7afc986bc3839feacf935c89ccbc7 (diff) | |
download | tk-19013242170fcb53f480c10a5ca48578456d2f1b.zip tk-19013242170fcb53f480c10a5ca48578456d2f1b.tar.gz tk-19013242170fcb53f480c10a5ca48578456d2f1b.tar.bz2 |
Missing quotes in test-cases
Diffstat (limited to 'tests/imgBmap.test')
-rw-r--r-- | tests/imgBmap.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/imgBmap.test b/tests/imgBmap.test index 8da1742..56484a6 100644 --- a/tests/imgBmap.test +++ b/tests/imgBmap.test @@ -503,7 +503,7 @@ test imageBmap-11.2 {ImgBmapDelete procedure} -body { test imageBmap-12.1 {ImgBmapCmdDeletedProc procedure} -body { image create bitmap i2 -file foo.bm -maskfile foo2.bm rename i2 {} - list [expr {i2 in [imageNames]}] [catch {i2 foo} msg] $msg + list [expr {"i2" in [imageNames]}] [catch {i2 foo} msg] $msg } -result {0 1 {invalid command name "i2"}} removeFile foo.bm |