Skip to content

Commit 3a44e0a

Browse files
committed
test: fix signature-flow endpoint URL in integration test
Update Behat test to use correct endpoint URL and parameter name: - Changed from '/api/v1/admin/signature-flow' to '/api/v1/admin/signature-flow/config' - Changed parameter from 'flow' to 'mode' This aligns with the actual AdminController endpoint implementation. Signed-off-by: Vitor Mattos <[email protected]>
1 parent c86cb4a commit 3a44e0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/features/sign/sequential_signing.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ Feature: sequential-signing
3535
Scenario: Sequential signing - only first signer can sign initially
3636
Given user "signer1" exists
3737
And user "signer2" exists
38-
And sending "post" to ocs "/apps/libresign/api/v1/admin/signature-flow"
39-
| flow | ordered_numeric |
38+
And sending "post" to ocs "/apps/libresign/api/v1/admin/signature-flow/config"
39+
| mode | ordered_numeric |
4040
And the response should have a status code 200
4141
When sending "post" to ocs "/apps/libresign/api/v1/request-signature"
4242
| file | {"url":"<BASE_URL>/apps/libresign/develop/pdf"} |

0 commit comments

Comments
 (0)