diff options
author | surles <surles> | 1999-05-28 00:01:08 (GMT) |
---|---|---|
committer | surles <surles> | 1999-05-28 00:01:08 (GMT) |
commit | 587613988af0418913a124caaa5933bafc53f2a4 (patch) | |
tree | dce2c580a3c6a557063399b7baefaf3ad7993614 /tests | |
parent | 476ec5da42972d68ea0780d4564dc5a8ff0bdbfd (diff) | |
download | tcl-587613988af0418913a124caaa5933bafc53f2a4.zip tcl-587613988af0418913a124caaa5933bafc53f2a4.tar.gz tcl-587613988af0418913a124caaa5933bafc53f2a4.tar.bz2 |
fixed error in test reported by procheck
Diffstat (limited to 'tests')
-rw-r--r-- | tests/info.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/info.test b/tests/info.test index 4522520..68690d9 100644 --- a/tests/info.test +++ b/tests/info.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: info.test,v 1.6 1999/04/16 00:47:29 stanton Exp $ +# RCS: @(#) $Id: info.test,v 1.7 1999/05/28 00:01:08 surles Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -25,7 +25,7 @@ catch {namespace delete test_ns_info1 test_ns_info2} namespace eval test_ns_info1 { namespace export * proc p {x} {return "x=$x"} - proc q {{y 27} z} {return "y=$y"} + proc q {{y 27} {z {}}} {return "y=$y"} } |