php cs fixer and rector: add missing comma in AsyncUploadControllerTest

This commit is contained in:
Julie Lenaerts 2024-07-04 13:58:10 +02:00
parent 2adc8b3bf6
commit af4db22184
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ class AsyncUploadControllerTest extends TestCase
return new SignedUrlPost( return new SignedUrlPost(
'https://object.store.example', 'https://object.store.example',
new \DateTimeImmutable('1 hour'), new \DateTimeImmutable('1 hour'),
'abc' 'abc',
150, 150,
1, 1,
1800, 1800,

View File

@ -60,7 +60,7 @@ class SignedUrlPostNormalizerTest extends KernelTestCase
'method' => 'POST', 'method' => 'POST',
'expires' => 1_700_000, 'expires' => 1_700_000,
'url' => 'https://object.store.example/container/object', 'url' => 'https://object.store.example/container/object',
'object_name' => 'abc' 'object_name' => 'abc',
], ],
$actual $actual
); );