From dd183b5867c14cddb67731ccb3e885142807eeac Mon Sep 17 00:00:00 2001 From: Giovanni Rivera Date: Sat, 11 Jan 2025 16:39:38 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Fix(app=5Ftest.go):=20Fix=20to?= =?UTF-8?q?=20respect=20gofmt=20linter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app_test.go b/app_test.go index 5e2b6e29dd..1b2b7a40d9 100644 --- a/app_test.go +++ b/app_test.go @@ -1514,12 +1514,12 @@ func Test_App_Test_drop_empty_response(t *testing.T) { t.Parallel() app := New() - app.Get("/", func (c Ctx) error { + app.Get("/", func(c Ctx) error { return c.Drop() }) _, err := app.Test(httptest.NewRequest(MethodGet, "/", nil), TestConfig{ - Timeout: 0, + Timeout: 0, FailOnTimeout: false, }) require.ErrorIs(t, err, ErrTestGotEmptyResponse)