Skip to content

Commit e217536

Browse files
committed
refactor(openapi): remove redundant wrapper in RequestSignatureControllerTest.php
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 1f310e2 commit e217536

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/php/Unit/Controller/RequestSignatureControllerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function testRequestStatusPropagation(?int $status, bool $expectStatusKey
9393
->with($file, [], $this->user)
9494
->willReturn(['ok' => true]);
9595

96-
$response = $this->controller->request(
96+
$response = $this->controller->requestSignature(
9797
signers: [[
9898
'identifyMethods' => [[
9999
'method' => 'email',
@@ -152,7 +152,7 @@ public function testUpdateSignStatusPropagation(?int $status, bool $expectStatus
152152
->with($file, [], $this->user)
153153
->willReturn(['ok' => true]);
154154

155-
$response = $this->controller->updateSign(
155+
$response = $this->controller->updateSignatureRequest(
156156
signers: [[
157157
'identifyMethods' => [[
158158
'method' => 'email',

0 commit comments

Comments
 (0)