diff --git a/integration/get_test.go b/integration/get_test.go index 9697d4f..973b049 100644 --- a/integration/get_test.go +++ b/integration/get_test.go @@ -56,7 +56,8 @@ func TestCustomDomain(t *testing.T) { if !assert.EqualValues(t, http.StatusOK, resp.StatusCode) { t.FailNow() } - assert.EqualValues(t, "text/html; charset=utf-8", resp.Header["Content-Type"][0]) + assert.EqualValues(t, "text/markdown; charset=utf-8", resp.Header["Content-Type"][0]) + assert.EqualValues(t, "106", resp.Header["Content-Length"][0]) assert.EqualValues(t, 106, getSize(resp.Body)) }