Fixed JSONP format (added semicolon) (#2007)

* Fixed JSONP format (added semicolon)

* render_test fix
This commit is contained in:
George Gabolaev
2019-09-02 15:18:08 +03:00
committed by Bo-Yi Wu
parent 6ece26c7c5
commit 01ca625b98
3 changed files with 4 additions and 4 deletions

View File

@ -676,7 +676,7 @@ func TestContextRenderJSONP(t *testing.T) {
c.JSONP(http.StatusCreated, H{"foo": "bar"})
assert.Equal(t, http.StatusCreated, w.Code)
assert.Equal(t, "x({\"foo\":\"bar\"})", w.Body.String())
assert.Equal(t, "x({\"foo\":\"bar\"});", w.Body.String())
assert.Equal(t, "application/javascript; charset=utf-8", w.Header().Get("Content-Type"))
}