From bb0818da2971eb612e76d86797877e9c348761cd Mon Sep 17 00:00:00 2001 From: mlosicki Date: Mon, 24 Jan 2022 02:23:49 +0100 Subject: [PATCH] fix: lint error --- default_api_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/default_api_test.go b/default_api_test.go index ba42205..b6f5f10 100644 --- a/default_api_test.go +++ b/default_api_test.go @@ -2339,7 +2339,7 @@ func TestDefaultApiService_GetBranchesPagination(t *testing.T) { w.Header().Set("Content-Type", "application/json") switch r.RequestURI { case "/api/1.0/projects/PROJECT/repos/REPO/branches?limit=100&start=0": - io.WriteString(w, `{ + _, err := io.WriteString(w, `{ "size": 1, "limit": 100, "isLastPage": true, @@ -2355,6 +2355,9 @@ func TestDefaultApiService_GetBranchesPagination(t *testing.T) { ], "start": 0 }`) + if err != nil { + t.Errorf("DefaultApiService.GetBranches() error = i/o error %v", err) + } default: t.Errorf("DefaultApiService.GetBranches() error = unhandled request %s", r.RequestURI) }