From 685c17bc0760bf000c5266e6bdcc7335dcad47a2 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Thu, 18 Dec 2025 18:10:36 +0000 Subject: [PATCH] fix: use 12+ char password for security setup test Password validation requires minimum 12 characters. --- tests/integration/api/update_flow_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/api/update_flow_test.go b/tests/integration/api/update_flow_test.go index 53f5c2e..653eb24 100644 --- a/tests/integration/api/update_flow_test.go +++ b/tests/integration/api/update_flow_test.go @@ -44,7 +44,7 @@ func TestUpdateFlowIntegration(t *testing.T) { } username := getenvDefault("UPDATE_API_USERNAME", "admin") - password := getenvDefault("UPDATE_API_PASSWORD", "admin") + password := getenvDefault("UPDATE_API_PASSWORD", "AdminPass123!") bootstrapToken := getenvDefault("PULSE_E2E_BOOTSTRAP_TOKEN", "0123456789abcdef0123456789abcdef0123456789abcdef") jar, err := cookiejar.New(nil)