summaryrefslogtreecommitdiffstats
path: root/tests/trace.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2005-07-26 16:23:59 (GMT)
committerdgp <dgp@users.sourceforge.net>2005-07-26 16:23:59 (GMT)
commitb4aa907f7b232da983bc1a84cf6ed978f0145be2 (patch)
tree945e34538dcaeaf9c1a4a25204c882260033e486 /tests/trace.test
parentd7c1ae018c2a9e4e28b9af2f1c6d5bfab48e2a02 (diff)
downloadtcl-b4aa907f7b232da983bc1a84cf6ed978f0145be2.zip
tcl-b4aa907f7b232da983bc1a84cf6ed978f0145be2.tar.gz
tcl-b4aa907f7b232da983bc1a84cf6ed978f0145be2.tar.bz2
typo
Diffstat (limited to 'tests/trace.test')
-rw-r--r--tests/trace.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/trace.test b/tests/trace.test
index 7df886f..3e1f9bb 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.26.2.7 2005/07/26 16:20:46 dgp Exp $
+# RCS: @(#) $Id: trace.test,v 1.26.2.8 2005/07/26 16:23:59 dgp Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -2175,7 +2175,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]