From bdd7643b411f3848716a97c110cfa3a5e2a4c2f7 Mon Sep 17 00:00:00 2001 From: Alexander Pikeev Date: Fri, 25 Oct 2024 13:43:03 +0300 Subject: [PATCH] fix: linter issues --- url_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/url_test.go b/url_test.go index 5c2d353..dcaebae 100644 --- a/url_test.go +++ b/url_test.go @@ -15,7 +15,7 @@ import ( func TestURL(t *testing.T) { c, err := NewClient("http://localhost:3000", &http.Client{}) - + require.NoError(t, err) req := NewURLRequest("http://example.com") req.UseBasicAuth("foo", "bar") dirPath, err := test.Rand()