Skip to content

Commit 23d0570

Browse files
committed
fix
1 parent 2f52ae2 commit 23d0570

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/blob/azure_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@ users:
124124

125125
var kubeClient kubernetes.Interface
126126
for _, test := range tests {
127-
if strings.HasPrefix(test.desc, "[linux]") && runtime.GOOS == "windows" {
127+
if strings.HasPrefix(test.desc, "[linux]") && runtime.GOOS != "linux" {
128128
continue
129129
}
130-
if strings.HasPrefix(test.desc, "[windows]") && runtime.GOOS == "linux" {
130+
if strings.HasPrefix(test.desc, "[windows]") && runtime.GOOS != "windows" {
131131
continue
132132
}
133133
if test.createFakeKubeConfig {

0 commit comments

Comments
 (0)