File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -420,7 +420,7 @@ test info-12.2 {info locals option} {
420
420
set xx1 2
421
421
set xx2 3
422
422
set y 4
423
- return [info loc x*]
423
+ return [info locals x*]
424
424
}
425
425
lsort [t1 2 3]
426
426
} {x xx1 xx2}
@@ -602,7 +602,7 @@ test info-18.1 {info tclversion option} -body {
602
602
scan [info tclversion] " %d.%d%c" a b c
603
603
} -cleanup {unset -nocomplain a b c} -result 2
604
604
test info-18.2 {info tclversion option} -body {
605
- info t 2
605
+ info tclv 2
606
606
} -returnCodes error -result {wrong # args: should be " info tclversion" }
607
607
test info-18.3 {info tclversion option} -body {
608
608
unset tcl_version
Original file line number Diff line number Diff line change @@ -4066,7 +4066,7 @@ test oo-27.6 {variables declaration - non-interference of levels} -setup {
4066
4066
foo create bar
4067
4067
oo::objdefine bar {
4068
4068
variable y!
4069
- method y {} {list [next] [incr y!] [info var] [info local ]}
4069
+ method y {} {list [next] [incr y!] [info var] [info locals ]}
4070
4070
export eval
4071
4071
}
4072
4072
bar y
You can’t perform that action at this time.
0 commit comments