diff options
Diffstat (limited to 'tests/dict.test')
-rw-r--r-- | tests/dict.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dict.test b/tests/dict.test index 72a336c..4b54c07 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. -if {[lsearch [namespace children] ::tcltest] == -1} { +if {"::tcltest" ni [namespace children]} { package require tcltest 2 namespace import -force ::tcltest::* } @@ -17,7 +17,7 @@ if {[lsearch [namespace children] ::tcltest] == -1} { # Used for constraining memory leak tests testConstraint memory [llength [info commands memory]] if {[testConstraint memory]} { - proc memtest script { + proc memtest {script} { set end [lindex [split [memory info] \n] 3 3] for {set i 0} {$i < 5} {incr i} { uplevel 1 $script |