diff options
Diffstat (limited to 'tests/ioCmd.test')
-rw-r--r-- | tests/ioCmd.test | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/ioCmd.test b/tests/ioCmd.test index 74fabe7..b167475 100644 --- a/tests/ioCmd.test +++ b/tests/ioCmd.test @@ -61,7 +61,7 @@ test iocmd-1.7 {puts command} { } 7 test iocmd-1.8 {puts command} { set f [open $path(test1) w] - fconfigure $f -translation lf -eofchar {} -encoding iso8859-1 + fconfigure $f -translation binary puts -nonewline $f [binary format a4a5 foo bar] close $f file size $path(test1) @@ -249,8 +249,7 @@ test iocmd-8.8 {fconfigure command} { test iocmd-8.9 {fconfigure command} { file delete $path(test1) set f1 [open $path(test1) w] - fconfigure $f1 -translation binary -buffering none -buffersize 4040 \ - -eofchar {} -encoding binary + fconfigure $f1 -translation binary -buffering none -buffersize 4040 set x [fconfigure $f1] close $f1 set x |