diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | tests/dict.test | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,10 @@ +2008-05-09 Kevin B. Kenny <kennykb@acm.org> + + * tests/dict.test (dict-19.2): Corrected a bug where + the test was changed to use [apply] instead of a temporary + proc, but the cleanup script still attempted to delete + the temporary proc. + 2008-05-07 Donal K. Fellows <dkf@cspool38.cs.man.ac.uk> * generic/tclCompCmds.c (TclCompileDictAppendCmd): Fix silly diff --git a/tests/dict.test b/tests/dict.test index 3917404..a9fee8c 100644 --- a/tests/dict.test +++ b/tests/dict.test @@ -9,7 +9,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: dict.test,v 1.27 2008/05/07 13:17:49 dkf Exp $ +# RCS: @(#) $Id: dict.test,v 1.28 2008/05/09 03:44:23 kennykb Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -924,7 +924,7 @@ test dict-19.2 {dict: testing for leaks} -setup { } -cleanup { unset -nocomplain end i tmp rename getbytes {} - rename stress {} +# rename stress {} } -result 0 test dict-20.1 {dict merge command} { |