This commit is contained in:
Filip Figiel 2018-08-17 09:21:03 +02:00
parent ddb175b4de
commit 567668943c
2 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,6 @@ type PureJSON struct {
Data interface{} Data interface{}
} }
type IndentedJSON struct { type IndentedJSON struct {
Data interface{} Data interface{}
} }

View File

@ -42,7 +42,7 @@ func TestRenderMsgPack(t *testing.T) {
func TestRenderJSON(t *testing.T) { func TestRenderJSON(t *testing.T) {
w := httptest.NewRecorder() w := httptest.NewRecorder()
data := map[string]interface{}{ data := map[string]interface{}{
"foo": "bar", "foo": "bar",
"html": "<b>", "html": "<b>",
} }