diff options
Diffstat (limited to 'tests/imgPhoto.test')
-rw-r--r-- | tests/imgPhoto.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/imgPhoto.test b/tests/imgPhoto.test index e85f512..7eabfc8 100644 --- a/tests/imgPhoto.test +++ b/tests/imgPhoto.test @@ -22,8 +22,8 @@ proc foreachPixel {img xVar yVar script} { upvar 1 $xVar x $yVar y set width [image width $img] set height [image height $img] - for {set x 0} {$x<$width} {incr x} { - for {set y 0} {$y<$height} {incr y} { + for {set x 0} {$x < $width} {incr x} { + for {set y 0} {$y < $height} {incr y} { uplevel 1 $script } } |