From 3e896deaf9b779ce907468e390fd6998b4bbd421 Mon Sep 17 00:00:00 2001 From: Tomaz Date: Wed, 20 Sep 2023 11:13:00 +0200 Subject: [PATCH] Update testing.md Comparing with "equal" is not valid due to possible extra `\n` character at the end in rec.Body.String() --- website/docs/guide/testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/guide/testing.md b/website/docs/guide/testing.md index cc07c501..989f9837 100644 --- a/website/docs/guide/testing.md +++ b/website/docs/guide/testing.md @@ -101,7 +101,7 @@ func TestCreateUser(t *testing.T) { // Assertions if assert.NoError(t, h.createUser(c)) { assert.Equal(t, http.StatusCreated, rec.Code) - assert.Equal(t, userJSON, rec.Body.String()) + assert.JSONEq(t, userJSON, rec.Body.String()) } } @@ -119,7 +119,7 @@ func TestGetUser(t *testing.T) { // Assertions if assert.NoError(t, h.getUser(c)) { assert.Equal(t, http.StatusOK, rec.Code) - assert.Equal(t, userJSON, rec.Body.String()) + assert.JSONEq(t, userJSON, rec.Body.String()) } } ```