summaryrefslogtreecommitdiffstats
path: root/tests/info.test
diff options
context:
space:
mode:
authorsurles <surles@noemail.net>1999-05-28 00:01:07 (GMT)
committersurles <surles@noemail.net>1999-05-28 00:01:07 (GMT)
commit76f767b4fbc4dbfc7dfecce7bdf569d409607cd2 (patch)
treedce2c580a3c6a557063399b7baefaf3ad7993614 /tests/info.test
parentb5822f8b26afd4a42cccce0a51a370643a218c93 (diff)
downloadtcl-76f767b4fbc4dbfc7dfecce7bdf569d409607cd2.zip
tcl-76f767b4fbc4dbfc7dfecce7bdf569d409607cd2.tar.gz
tcl-76f767b4fbc4dbfc7dfecce7bdf569d409607cd2.tar.bz2
fixed error in test reported by procheck
FossilOrigin-Name: 4433b418795b72d7e4ddd93cdfc8267de729a015
Diffstat (limited to 'tests/info.test')
-rw-r--r--tests/info.test4
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"}
}