From 75664c655d15e9308cf62fcdaee3bed1c4545c63 Mon Sep 17 00:00:00 2001 From: apnadkarni Date: Mon, 20 Mar 2023 02:36:36 +0000 Subject: Fix http11 test hang caused by trailing brace in previous commit --- tests/httpd11.tcl | 4 ++-- 1 file 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 -- cgit v0.12