From 1732271f453a041949ff458615a2e12676bff1c0 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Sat, 6 Apr 2024 13:35:21 -0300 Subject: [PATCH] fix: Add array key Signed-off-by: Vitor Mattos --- tests/integration/features/bootstrap/FeatureContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/features/bootstrap/FeatureContext.php b/tests/integration/features/bootstrap/FeatureContext.php index bfde04040..f0a79259f 100644 --- a/tests/integration/features/bootstrap/FeatureContext.php +++ b/tests/integration/features/bootstrap/FeatureContext.php @@ -127,7 +127,7 @@ protected function beforeRequest(string $fullUrl, array $options): array { protected function parseText(string $text): string { $fields = $this->fields; if (!empty($this->signer['sign_uuid'])) { - $fields[] = $this->signer['sign_uuid']; + $fields['SIGN_UUID'] = $this->signer['sign_uuid']; } $fields['BASE_URL'] = $this->baseUrl . '/index.php'; foreach ($fields as $key => $value) {