Fix construct of SignedUrlPost

This commit is contained in:
2024-07-04 11:58:48 +02:00
parent 21b79c1981
commit 2adc8b3bf6
5 changed files with 7 additions and 1 deletions

View File

@@ -38,6 +38,7 @@ class SignedUrlPostNormalizerTest extends KernelTestCase
$signedUrl = new SignedUrlPost(
'https://object.store.example/container/object',
\DateTimeImmutable::createFromFormat('U', '1700000'),
'abc',
15000,
1,
180,
@@ -59,6 +60,7 @@ class SignedUrlPostNormalizerTest extends KernelTestCase
'method' => 'POST',
'expires' => 1_700_000,
'url' => 'https://object.store.example/container/object',
'object_name' => 'abc'
],
$actual
);