summaryrefslogtreecommitdiffstats
path: root/tests/cmdAH.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-10-31 23:59:49 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-10-31 23:59:49 (GMT)
commit11329cb29f65c6e69a7021d02579f93c0070d20a (patch)
tree1e4c2e7ec74a1d1114f7ebb56b5fa8fd85c251cd /tests/cmdAH.test
parentef1a52291e38e9136ecfa1ec9effab686091bdf6 (diff)
downloadtcl-11329cb29f65c6e69a7021d02579f93c0070d20a.zip
tcl-11329cb29f65c6e69a7021d02579f93c0070d20a.tar.gz
tcl-11329cb29f65c6e69a7021d02579f93c0070d20a.tar.bz2
command quoting fix
Diffstat (limited to 'tests/cmdAH.test')
-rw-r--r--tests/cmdAH.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cmdAH.test b/tests/cmdAH.test
index ac45434..7173908 100644
--- a/tests/cmdAH.test
+++ b/tests/cmdAH.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: cmdAH.test,v 1.48 2004/10/31 18:44:27 dkf Exp $
+# RCS: @(#) $Id: cmdAH.test,v 1.49 2004/10/31 23:59:49 dgp Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2.1
@@ -633,7 +633,7 @@ foreach outer { {} a .a a. a.a } {
set thing [format %s/%s $outer $inner]
;test cmdAH-10.$num {Tcl_FileObjCmd: rootname and extension options} testsetplatform "
testsetplatform unix
- format %s%s [file rootname $thing] [file ext $thing]
+ [list format %s%s [file rootname $thing] [file ext $thing]]
" $thing
incr num
}