diff options
author | dgp <dgp@noemail.net> | 2004-02-17 20:40:40 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2004-02-17 20:40:40 (GMT) |
commit | ba5497c120194f5c3a24c751d122763909b8db39 (patch) | |
tree | 6626378d6d0fedc440547c74accee0a1515c69eb /tests | |
parent | 2834292488098beaae7bbe8c621ac24a68a1ac6c (diff) | |
download | tk-ba5497c120194f5c3a24c751d122763909b8db39.zip tk-ba5497c120194f5c3a24c751d122763909b8db39.tar.gz tk-ba5497c120194f5c3a24c751d122763909b8db39.tar.bz2 |
* tests/imgPhoto.test (imgPhoto-16.1): Corrected incorrect
variable name [Bug 899010].
FossilOrigin-Name: a9956e1cdd63e4962ed018b1f408ea27f17b87b5
Diffstat (limited to 'tests')
-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 72724d3..b568477 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.15.2.1 2004/02/09 14:40:31 dkf Exp $ +# RCS: @(#) $Id: imgPhoto.test,v 1.15.2.2 2004/02/17 20:40:41 dgp Exp $ package require tcltest 2.1 namespace import -force tcltest::configure @@ -663,7 +663,7 @@ test imgPhoto-15.1 {photo images can fail to allocate memory gracefully} \ test imgPhoto-16.1 {copying to self doesn't access freed memory} { # Bug 877950 makes this crash when trying to copy out of a deallocated area - set photo [image create photo] + set i [image create photo] $i put red -to 0 0 1000 1000 $i copy $i -from 0 0 1000 1000 -to 500 0 image delete $i |