diff options
Diffstat (limited to 'core_test.go')
-rw-r--r-- | core_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core_test.go b/core_test.go index 2438b98..8027bfe 100644 --- a/core_test.go +++ b/core_test.go @@ -27,7 +27,7 @@ func TestBasicGet(t *testing.T) { t.Error(err) } body, _ := ioutil.ReadAll(resp.Body) - if string(body) != `{"items":["item1","item2"]}` { + if string(body) != "{\n \"items\": [\n \"item1\",\n \"item2\"\n ]\n}" { t.Error("Not equal.") } } |