diff options
Diffstat (limited to 'tests/imgPhoto.test')
-rw-r--r-- | tests/imgPhoto.test | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/imgPhoto.test b/tests/imgPhoto.test index 73f949e..99d3832 100644 --- a/tests/imgPhoto.test +++ b/tests/imgPhoto.test @@ -9,7 +9,7 @@ # # Author: Paul Mackerras (paulus@cs.anu.edu.au) # -# RCS: @(#) $Id: imgPhoto.test,v 1.6 1999/10/29 03:58:10 hobbs Exp $ +# RCS: @(#) $Id: imgPhoto.test,v 1.7 1999/12/14 06:53:13 hobbs Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -371,8 +371,7 @@ test imagePhoto-9.1 {ImgPhotoCmdDeletedProc procedure} { test imgPhoto-10.1 {Tk_ImgPhotoPutBlock procedure} { eval image delete [image names] image create photo p1 - p1 put {{#ff0000 #ff0000 #ff0000 #ff0000 #ff0000 #ff0000 #ff0000 #ff0000}} \ - -to 0 0 + p1 put {{#ff0000 #ff0000 #ff0000 #ff0000 #ff0000 #ff0000 #ff0000 #ff0000}} -to 0 0 p1 put {{#00ff00 #00ff00}} -to 2 0 list [p1 get 2 0] [p1 get 3 0] [p1 get 4 0] } {{0 255 0} {0 255 0} {255 0 0}} |