From 82ab3624253013fae2ce36568d62a27724afe714 Mon Sep 17 00:00:00 2001 From: TakuKaneda Date: Thu, 26 Aug 2021 13:56:35 +0900 Subject: [PATCH] Add new line to test JSON --- website/content/guide/testing.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/content/guide/testing.md b/website/content/guide/testing.md index 5f9fc879..956c3054 100644 --- a/website/content/guide/testing.md +++ b/website/content/guide/testing.md @@ -86,7 +86,8 @@ var ( mockDB = map[string]*User{ "jon@labstack.com": &User{"Jon Snow", "jon@labstack.com"}, } - userJSON = `{"name":"Jon Snow","email":"jon@labstack.com"}` + userJSON = `{"name":"Jon Snow","email":"jon@labstack.com"} +` ) func TestCreateUser(t *testing.T) {