fix: use 12+ char password for security setup test
Password validation requires minimum 12 characters.
This commit is contained in:
parent
c9e28b0ac2
commit
685c17bc07
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue