diff options
author | dgp <dgp@users.sourceforge.net> | 2002-07-10 16:03:46 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-07-10 16:03:46 (GMT) |
commit | b226ebf7a3df2c41a29cafef14bf4c3f4586dc82 (patch) | |
tree | 73a1b151b68305abc01cf0ff73e9896c818293af /tests | |
parent | fa2b7f9795b1febf4d941721b39d19d893e14af7 (diff) | |
download | tcl-b226ebf7a3df2c41a29cafef14bf4c3f4586dc82.zip tcl-b226ebf7a3df2c41a29cafef14bf4c3f4586dc82.tar.gz tcl-b226ebf7a3df2c41a29cafef14bf4c3f4586dc82.tar.bz2 |
typo fixes
Diffstat (limited to 'tests')
-rw-r--r-- | tests/winPipe.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/winPipe.test b/tests/winPipe.test index 28cec62..c4b8a59 100644 --- a/tests/winPipe.test +++ b/tests/winPipe.test @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: winPipe.test,v 1.19 2002/07/10 11:56:45 dgp Exp $ +# RCS: @(#) $Id: winPipe.test,v 1.20 2002/07/10 16:03:46 dgp Exp $ package require tcltest namespace import -force ::tcltest::* @@ -288,10 +288,10 @@ set path(echoArgs.tcl) [makeFile { } echoArgs.tcl] test winpipe-7.1 {BuildCommandLine: null arguments} {pcOnly exec} { - exec [interprter] $path(echoArgs.tcl) foo "" bar + exec [interpreter] $path(echoArgs.tcl) foo "" bar } [list $path(echoArgs.tcl) {foo {} bar}] test winpipe-7.2 {BuildCommandLine: null arguments} {pcOnly exec} { - exec [interprter] $path(echoArgs.tcl) foo \" bar + exec [interpreter] $path(echoArgs.tcl) foo \" bar } [list $path(echoArgs.tcl) {foo {"} bar}] # restore old values for env(TMP) and env(TEMP) |