summaryrefslogtreecommitdiff
path: root/integration/internal
diff options
context:
space:
mode:
authorSebastiaan van Stijn <github@gone.nl>2022-07-02 21:51:37 +0200
committerSebastiaan van Stijn <github@gone.nl>2022-07-04 10:15:54 +0200
commit1cab8eda24e70c60061e34adc4a19c1aeb5ad90c (patch)
tree3d309732698a8cff09e23913396e7008ddef5ab4 /integration/internal
parent65e1adc219f4b1b71f09479aa98be87135a579d5 (diff)
downloaddocker-1cab8eda24e70c60061e34adc4a19c1aeb5ad90c.tar.gz
replace golint with revive, as it's deprecated
WARN [runner] The linter 'golint' is deprecated (since v1.41.0) due to: The repository of the linter has been archived by the owner. Replaced by revive. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Diffstat (limited to 'integration/internal')
-rw-r--r--integration/internal/network/network.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration/internal/network/network.go b/integration/internal/network/network.go
index 04f29c7bb2..5a682ce84d 100644
--- a/integration/internal/network/network.go
+++ b/integration/internal/network/network.go
@@ -26,7 +26,7 @@ func Create(ctx context.Context, client client.APIClient, name string, ops ...fu
}
// CreateNoError creates a network with the specified options and verifies there were no errors
-func CreateNoError(ctx context.Context, t *testing.T, client client.APIClient, name string, ops ...func(*types.NetworkCreate)) string { //nolint: golint
+func CreateNoError(ctx context.Context, t *testing.T, client client.APIClient, name string, ops ...func(*types.NetworkCreate)) string {
t.Helper()
name, err := createNetwork(ctx, client, name, ops...)