Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jiuker committed Jan 11, 2024
1 parent 3968015 commit 5347da8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions internal/keystore/azure/key-vault_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
)

func TestConnectWithCredentials(t *testing.T) {
ClientID := ""
TenantID := ""
Secret := ""
EndPoint := ""
ClientID := os.Getenv("ClientID")
TenantID := os.Getenv("TenantID")
Secret := os.Getenv("Secret")
EndPoint := os.Getenv("EndPoint")
if ClientID == "" || TenantID == "" || Secret == "" || EndPoint == "" {
t.Skip("Skipping test due to missing credentials")
}
Expand Down Expand Up @@ -75,4 +75,5 @@ func TestConnectWithCredentials(t *testing.T) {
}
_ = c1
_ = c2
_ = c3
}

0 comments on commit 5347da8

Please sign in to comment.