Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Martinez <jmartinez@gitlab.com>2020-05-25 06:21:48 +0300
committerJaime Martinez <jmartinez@gitlab.com>2020-06-01 03:39:04 +0300
commitc557de8d5e324da35d55fbb763a00574ff8f47e9 (patch)
treed65ef36d3da273efe8c4fb403e72fe67cee5cfbf /internal/artifact
parent35c937be058d70d1e4fd4dd49de329dc32936f73 (diff)
Enable the remaining linters
- ineffassign - misspell - structcheck - typecheck - unconvert - unused - varcheck - whitespace
Diffstat (limited to 'internal/artifact')
-rw-r--r--internal/artifact/artifact_test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/artifact/artifact_test.go b/internal/artifact/artifact_test.go
index a55eda7b..ab25d16f 100644
--- a/internal/artifact/artifact_test.go
+++ b/internal/artifact/artifact_test.go
@@ -84,7 +84,6 @@ func TestTryMakeRequest(t *testing.T) {
require.Equal(t, c.Length, result.Header().Get("Content-Length"))
require.Equal(t, c.CacheControl, result.Header().Get("Cache-Control"))
require.Equal(t, c.Content, result.Body.String())
-
})
}
}