Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvz committed Jan 11, 2024
1 parent 2f52ae2 commit 23d0570
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/blob/azure_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ users:

var kubeClient kubernetes.Interface
for _, test := range tests {
if strings.HasPrefix(test.desc, "[linux]") && runtime.GOOS == "windows" {
if strings.HasPrefix(test.desc, "[linux]") && runtime.GOOS != "linux" {
continue
}
if strings.HasPrefix(test.desc, "[windows]") && runtime.GOOS == "linux" {
if strings.HasPrefix(test.desc, "[windows]") && runtime.GOOS != "windows" {
continue
}
if test.createFakeKubeConfig {
Expand Down

0 comments on commit 23d0570

Please sign in to comment.