From 19159931d9f21442f9cd27fc89376f3b939db82b Mon Sep 17 00:00:00 2001 From: Arjun Sreedharan Date: Thu, 18 Jul 2024 21:07:24 +0000 Subject: [PATCH] remove references to the windows2016 stack This stack is identical to the windows stack and windows2016 has been unsupported in CF for a long time now. https://docs.cloudfoundry.org/devguide/deploy-apps/windows-stacks.html#-available-stacks --- src/binary/integration/integration_suite_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/binary/integration/integration_suite_test.go b/src/binary/integration/integration_suite_test.go index 208e54ed..48540720 100644 --- a/src/binary/integration/integration_suite_test.go +++ b/src/binary/integration/integration_suite_test.go @@ -90,7 +90,7 @@ func PushAppAndConfirm(app *cutlass.App) { } func SkipIfNotWindows() { - if os.Getenv("SKIP_WINDOWS_TESTS") != "" || !canRunForOneOfStacks("windows2012R2", "windows2016", "windows") { + if os.Getenv("SKIP_WINDOWS_TESTS") != "" || os.Getenv("CF_STACK") != "windows" { Skip("Skipping Windows tests") } }