diff options
Diffstat (limited to 'tests/winPipe.test')
-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) |