summaryrefslogtreecommitdiffstats
path: root/tests/trace.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-06-19 16:39:09 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-06-19 16:39:09 (GMT)
commit9c1dcb7e7bc68176305cca1d51cbba6e25a82e61 (patch)
tree80034baba5e713b7f51430eb361f6c2ad68d345a /tests/trace.test
parent4c3eee25219acee5f720c525c30bc0c7d57c0c30 (diff)
parentb6c5d8274c62b2e355d45b6b0e824c276f97ff8a (diff)
downloadtcl-9c1dcb7e7bc68176305cca1d51cbba6e25a82e61.zip
tcl-9c1dcb7e7bc68176305cca1d51cbba6e25a82e61.tar.gz
tcl-9c1dcb7e7bc68176305cca1d51cbba6e25a82e61.tar.bz2
Fix [7be97a6859]: Reviewing chan.n changes
Diffstat (limited to 'tests/trace.test')
-rw-r--r--tests/trace.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/trace.test b/tests/trace.test
index 64c9111..16c858c 100644
--- a/tests/trace.test
+++ b/tests/trace.test
@@ -1695,7 +1695,7 @@ test trace-21.12 {bug 2438181} -setup {
trace add execution set2 leave {puts one two three #;}
} -body {
set2 a hello
-} -returnCodes 1 -result {wrong # args: should be "puts ?-nonewline? ?channelId? string"}
+} -returnCodes 1 -result {wrong # args: should be "puts ?-nonewline? ?channel? string"}
proc factorial {n} {
if {$n != 1} { return [expr {$n * [factorial [expr {$n -1 }]]}] }