From b91e051e837223e7d0f2faeb2666cebe99a35658 Mon Sep 17 00:00:00 2001 From: denis-tingaikin Date: Wed, 12 Oct 2022 18:54:43 +0300 Subject: [PATCH] fix linter Signed-off-by: denis-tingaikin --- pkg/networkservice/common/excludedprefixes/client_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/networkservice/common/excludedprefixes/client_test.go b/pkg/networkservice/common/excludedprefixes/client_test.go index 5dd3bd841..43e5771b1 100644 --- a/pkg/networkservice/common/excludedprefixes/client_test.go +++ b/pkg/networkservice/common/excludedprefixes/client_test.go @@ -1,5 +1,7 @@ // Copyright (c) 2021 Doc.ai and/or its affiliates. // +// Copyright (c) 2022 Cisco and/or its affiliates. +// // SPDX-License-Identifier: Apache-2.0 // // Licensed under the Apache License, Version 2.0 (the "License"); @@ -519,7 +521,7 @@ func Test_ExcludePrefixClient_ShouldntExcludeRouteSubnets(t *testing.T) { _, err := client.Request(context.Background(), req) require.NoError(t, err) - //Refresh + // Refresh client = chain.NewNetworkServiceClient( client, checkrequest.NewClient(t, func(t *testing.T, request *networkservice.NetworkServiceRequest) { @@ -531,7 +533,6 @@ func Test_ExcludePrefixClient_ShouldntExcludeRouteSubnets(t *testing.T) { _, err = client.Request(context.Background(), req) require.NoError(t, err) - } func TestClient(t *testing.T) {