diff options
author | dgp <dgp@users.sourceforge.net> | 2005-07-26 16:24:35 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-07-26 16:24:35 (GMT) |
commit | dc19becf6445e0d3c91ce8bf6022e5b6e038fe18 (patch) | |
tree | c88b40395ab322b8aa3ec4b92afb2d9fa4a1fa44 /tests/trace.test | |
parent | f0db0d96ba29b85631aa547feecc430a3b0ec221 (diff) | |
download | tcl-dc19becf6445e0d3c91ce8bf6022e5b6e038fe18.zip tcl-dc19becf6445e0d3c91ce8bf6022e5b6e038fe18.tar.gz tcl-dc19becf6445e0d3c91ce8bf6022e5b6e038fe18.tar.bz2 |
typo
Diffstat (limited to 'tests/trace.test')
-rw-r--r-- | tests/trace.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/trace.test b/tests/trace.test index b158c3a..6b78fed 100644 --- a/tests/trace.test +++ b/tests/trace.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: trace.test,v 1.39 2005/07/26 16:21:31 dgp Exp $ +# RCS: @(#) $Id: trace.test,v 1.40 2005/07/26 16:24:35 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -2240,7 +2240,7 @@ test trace-34.3 {Bug 1224585} { test trace-34.4 {Bug 1047286} { variable x notrace proc callback {old - -} { - variable x "$old exists" [namespace which -command $old]" + variable x "$old exists: [namespace which -command $old]" } namespace eval ::foo {proc bar {} {}} trace add command ::foo::bar delete [namespace code callback] |