From 746e363f9b4799689c5ed9f2a41be1a1638d3114 Mon Sep 17 00:00:00 2001 From: D067386 Date: Thu, 30 Jan 2025 16:09:10 +0100 Subject: [PATCH] Fix integration tests --- integration/helpers/login.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/helpers/login.go b/integration/helpers/login.go index 13596cce129..939698a4ce3 100644 --- a/integration/helpers/login.go +++ b/integration/helpers/login.go @@ -20,7 +20,7 @@ func SetAPI() (string, bool) { apiURL := GetAPI() skipSSLValidation := SkipSSLValidation() if skipSSLValidation { - Eventually(CF("api", apiURL, "--skip-ssl-validation")).Should(Exit(1)) + Eventually(CF("api", apiURL, "--skip-ssl-validation")).Should(Exit(0)) } else { Eventually(CF("api", apiURL)).Should(Exit(0)) }