summaryrefslogtreecommitdiffstats
path: root/tests/fCmd.test
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2002-07-02 12:16:04 (GMT)
committervincentdarley <vincentdarley>2002-07-02 12:16:04 (GMT)
commit1cd35d50e23acf4f42ece59c185ec95409e2e446 (patch)
tree576c4426d4b163c9be109862d760b31c11d7bbf8 /tests/fCmd.test
parent782734742ecd2e4fdda69f7cff40e27eb51887b6 (diff)
downloadtcl-1cd35d50e23acf4f42ece59c185ec95409e2e446.zip
tcl-1cd35d50e23acf4f42ece59c185ec95409e2e446.tar.gz
tcl-1cd35d50e23acf4f42ece59c185ec95409e2e446.tar.bz2
clearer error msgs for file link
Diffstat (limited to 'tests/fCmd.test')
-rw-r--r--tests/fCmd.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/fCmd.test b/tests/fCmd.test
index 19fbb07..8891f40 100644
--- a/tests/fCmd.test
+++ b/tests/fCmd.test
@@ -10,7 +10,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: fCmd.test,v 1.17 2002/07/01 14:35:10 dgp Exp $
+# RCS: @(#) $Id: fCmd.test,v 1.18 2002/07/02 12:16:05 vincentdarley Exp $
#
if {[lsearch [namespace children] ::tcltest] == -1} {
@@ -2181,11 +2181,11 @@ if {[string equal $tcl_platform(platform) "windows"]} {
test fCmd-28.1 {file link} {hasLinks} {
list [catch {file link} msg] $msg
-} {1 {wrong # args: should be "file link ?-linktype? source ?target?"}}
+} {1 {wrong # args: should be "file link ?-linktype? linkname ?target?"}}
test fCmd-28.2 {file link} {hasLinks} {
list [catch {file link a b c d} msg] $msg
-} {1 {wrong # args: should be "file link ?-linktype? source ?target?"}}
+} {1 {wrong # args: should be "file link ?-linktype? linkname ?target?"}}
test fCmd-28.3 {file link} {hasLinks} {
list [catch {file link abc b c} msg] $msg