Skip to content

Commit 79c826e

Browse files
committed
chore: fix golint
1 parent a86df7e commit 79c826e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/utils/azure/azure_helper.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func GetClient(cloud, subscriptionID, clientID, tenantID, clientSecret string) (
5656
return nil, err
5757
}
5858

59-
return getClient(env, subscriptionID, tenantID, cred, env.TokenAudience), nil
59+
return getClient(env, subscriptionID, cred, env.TokenAudience), nil
6060
}
6161

6262
func (az *Client) EnsureResourceGroup(ctx context.Context, name, location string, managedBy *string) (resourceGroup *resources.Group, err error) {
@@ -134,7 +134,7 @@ func getCloudConfig(env azure.Environment) cloud.Configuration {
134134
}
135135
}
136136

137-
func getClient(env azure.Environment, subscriptionID, tenantID string, cred *azidentity.ClientSecretCredential, scope string) *Client {
137+
func getClient(env azure.Environment, subscriptionID string, cred *azidentity.ClientSecretCredential, scope string) *Client {
138138
c := &Client{
139139
environment: env,
140140
subscriptionID: subscriptionID,

0 commit comments

Comments
 (0)