From 8ba48fb5caa0bf5b1b2a73c788cd753c41373b44 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Wed, 13 Jul 2011 15:48:57 -0700 Subject: [PATCH] fix build from e904b6784768 breakage R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4696047 --- src/pkg/http/fs_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/http/fs_test.go b/src/pkg/http/fs_test.go index 0c6edba9bc..e278e25399 100644 --- a/src/pkg/http/fs_test.go +++ b/src/pkg/http/fs_test.go @@ -184,7 +184,7 @@ func TestServeFileMimeType(t *testing.T) { if err != nil { t.Fatal(err) } - want := "text/css" + want := "text/css; charset=utf-8" if h := resp.Header.Get("Content-Type"); h != want { t.Errorf("Content-Type mismatch: got %q, want %q", h, want) }