diff options
author | apnadkarni <apnmbx-wits@yahoo.com> | 2023-03-20 02:36:36 (GMT) |
---|---|---|
committer | apnadkarni <apnmbx-wits@yahoo.com> | 2023-03-20 02:36:36 (GMT) |
commit | 75664c655d15e9308cf62fcdaee3bed1c4545c63 (patch) | |
tree | 4a4ec8e2d217efc653dedfb77d0f0031795468ff /tests | |
parent | 800d78f04d79def339bde5edb9042b6288524460 (diff) | |
download | tcl-75664c655d15e9308cf62fcdaee3bed1c4545c63.zip tcl-75664c655d15e9308cf62fcdaee3bed1c4545c63.tar.gz tcl-75664c655d15e9308cf62fcdaee3bed1c4545c63.tar.bz2 |
Fix http11 test hang caused by trailing brace in previous commit
Diffstat (limited to 'tests')
-rw-r--r-- | tests/httpd11.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/httpd11.tcl b/tests/httpd11.tcl index e97f403..9e0edcd 100644 --- a/tests/httpd11.tcl +++ b/tests/httpd11.tcl @@ -151,9 +151,9 @@ proc Service {chan addr port} { foreach {what type} [mime-type $path] break set f [open $path r] if {$what eq "binary"} { - chan configure $f -translation binary} + chan configure $f -translation binary } else { - chan configure $f -encoding utf-8} + chan configure $f -encoding utf-8 } set data [read $f] close $f |