Commit 8ba48fb5 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

fix build from e904b6784768 breakage

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/4696047
parent aebfd63c
...@@ -184,7 +184,7 @@ func TestServeFileMimeType(t *testing.T) { ...@@ -184,7 +184,7 @@ func TestServeFileMimeType(t *testing.T) {
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
want := "text/css" want := "text/css; charset=utf-8"
if h := resp.Header.Get("Content-Type"); h != want { if h := resp.Header.Get("Content-Type"); h != want {
t.Errorf("Content-Type mismatch: got %q, want %q", h, want) t.Errorf("Content-Type mismatch: got %q, want %q", h, want)
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment