Skip to content

Commit d4d719d

Browse files
Use proper IsWindows functionj
1 parent 6968ea9 commit d4d719d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration_test/gce/gce_testing.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2075,7 +2075,7 @@ func RunForEachImage(t *testing.T, testBody func(t *testing.T, imageSpec string)
20752075
for _, imageSpec := range imageSpecs {
20762076
imageSpec := imageSpec // https://golang.org/doc/faq#closures_and_goroutines
20772077
// FIXME(b/398862433): Re-enable tests when writing windows implementation
2078-
if IsOpsAgentUAPPlugin() && strings.Contains(imageSpec, "windows") {
2078+
if IsOpsAgentUAPPlugin() && IsWindows(imageSpec) {
20792079
continue
20802080
}
20812081
t.Run(imageSpec, func(t *testing.T) {

0 commit comments

Comments
 (0)