Skip to content

Commit

Permalink
fix: Add array key
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos authored and backportbot-libresign[bot] committed Apr 6, 2024
1 parent c71e3e2 commit 1732271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/features/bootstrap/FeatureContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 1732271

Please sign in to comment.