We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f52ae2 commit 23d0570Copy full SHA for 23d0570
pkg/blob/azure_test.go
@@ -124,10 +124,10 @@ users:
124
125
var kubeClient kubernetes.Interface
126
for _, test := range tests {
127
- if strings.HasPrefix(test.desc, "[linux]") && runtime.GOOS == "windows" {
+ if strings.HasPrefix(test.desc, "[linux]") && runtime.GOOS != "linux" {
128
continue
129
}
130
- if strings.HasPrefix(test.desc, "[windows]") && runtime.GOOS == "linux" {
+ if strings.HasPrefix(test.desc, "[windows]") && runtime.GOOS != "windows" {
131
132
133
if test.createFakeKubeConfig {
0 commit comments