Skip to content

Commit

Permalink
change the test order
Browse files Browse the repository at this point in the history
  • Loading branch information
jiuker committed Jan 11, 2024
1 parent 355dc13 commit 7abfaaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/keystore/azure/key-vault_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ func TestConnectWithCredentials(t *testing.T) {
return
}
os.Setenv("AZURE_CLIENT_API_VERSION", "7.4")
c2, err := ConnectWithCredentials(ctx, EndPoint, Credentials{TenantID: TenantID, ClientID: ClientID, Secret: Secret})
c3, err := ConnectWithIdentity(ctx, EndPoint, ManagedIdentity{ClientID: ClientID})
if err != nil {
return
}
c3, err := ConnectWithIdentity(ctx, EndPoint, ManagedIdentity{ClientID: ClientID})
c2, err := ConnectWithCredentials(ctx, EndPoint, Credentials{TenantID: TenantID, ClientID: ClientID, Secret: Secret})
if err != nil {
return
}
Expand Down

0 comments on commit 7abfaaa

Please sign in to comment.