diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2006-08-09 14:16:03 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2006-08-09 14:16:03 (GMT) |
commit | 74883382511cb4b94eff69c13ac3b197fa55d4ad (patch) | |
tree | 2fdd92009a59e2efbba2003840a3eeaf9f5f3585 /tests | |
parent | 5d8d3fcace7029ada82a3ac3cdc7f9afdd19bb9f (diff) | |
download | tcl-74883382511cb4b94eff69c13ac3b197fa55d4ad.zip tcl-74883382511cb4b94eff69c13ac3b197fa55d4ad.tar.gz tcl-74883382511cb4b94eff69c13ac3b197fa55d4ad.tar.bz2 |
Error message consistency improvements. [Bug 1534628]
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cmdIL.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/cmdIL.test b/tests/cmdIL.test index f1653b4..717370a 100644 --- a/tests/cmdIL.test +++ b/tests/cmdIL.test @@ -8,7 +8,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: cmdIL.test,v 1.26 2005/06/01 11:00:35 dkf Exp $ +# RCS: @(#) $Id: cmdIL.test,v 1.27 2006/08/09 14:16:03 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -440,7 +440,7 @@ test cmdIL-6.1 {lassign command syntax} -body { testLassign } -returnCodes 1 -cleanup { rename testLassign {} -} -result {wrong # args: should be "lassign list varname ?varname ...?"} +} -result {wrong # args: should be "lassign list varName ?varName ...?"} test cmdIL-6.2 {lassign command syntax} -body { proc testLassign {} { lassign x @@ -448,7 +448,7 @@ test cmdIL-6.2 {lassign command syntax} -body { testLassign } -returnCodes 1 -cleanup { rename testLassign {} -} -result {wrong # args: should be "lassign list varname ?varname ...?"} +} -result {wrong # args: should be "lassign list varName ?varName ...?"} test cmdIL-6.3 {lassign command} -body { proc testLassign {} { set x FAIL @@ -571,7 +571,7 @@ test cmdIL-6.13 {lassign command syntax} -body { testLassign } -returnCodes 1 -cleanup { rename testLassign {} -} -result {wrong # args: should be "lassign list varname ?varname ...?"} +} -result {wrong # args: should be "lassign list varName ?varName ...?"} test cmdIL-6.14 {lassign command syntax} -body { proc testLassign {} { set lassign lassign @@ -580,7 +580,7 @@ test cmdIL-6.14 {lassign command syntax} -body { testLassign } -returnCodes 1 -cleanup { rename testLassign {} -} -result {wrong # args: should be "lassign list varname ?varname ...?"} +} -result {wrong # args: should be "lassign list varName ?varName ...?"} test cmdIL-6.15 {lassign command} -body { proc testLassign {} { set lassign lassign |