wantCT   string
                wantBody string
        }{
-               {MethodGet, nil, "text/html; charset=utf-8", "<a href=\"/foo\">Found</a>.\n\n"},
+               {MethodGet, nil, "text/html; charset=utf-8", "<a href=\"/foo\">Found</a>.\n"},
                {MethodHead, nil, "text/html; charset=utf-8", ""},
                {MethodPost, nil, "", ""},
                {MethodDelete, nil, "", ""},
 
 
        // Shouldn't send the body for POST or HEAD; that leaves GET.
        if !hadCT && r.Method == "GET" {
-               body := "<a href=\"" + htmlEscape(url) + "\">" + StatusText(code) + "</a>.\n"
+               body := "<a href=\"" + htmlEscape(url) + "\">" + StatusText(code) + "</a>."
                fmt.Fprintln(w, body)
        }
 }