1
0
mirror of https://github.com/golang/go synced 2024-11-19 11:44:45 -07:00

fix build from e904b6784768 breakage

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/4696047
This commit is contained in:
Brad Fitzpatrick 2011-07-13 15:48:57 -07:00
parent aebfd63cd9
commit 8ba48fb5ca

View File

@ -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)
}