diff --git a/tests/Feature/UploadTest.php b/tests/Feature/UploadTest.php index 211be8c..4f5934c 100644 --- a/tests/Feature/UploadTest.php +++ b/tests/Feature/UploadTest.php @@ -233,14 +233,14 @@ test('it returns 403 when not authorized', function () { $post = $this->newPost(); $response = $this->postJson('/mediaupload', [ - 'model' => 'post', - 'id' => $post->id, - 'collection' => 'defaultSingleFile', - 'payload' => [ - 'content' => base64_encode($this->pdfFile()->getContent()), - 'name' => 'beispiel bild.jpg', - ], - ]); + 'model' => 'post', + 'id' => $post->id, + 'collection' => 'defaultSingleFile', + 'payload' => [ + 'content' => base64_encode($this->pdfFile()->getContent()), + 'name' => 'beispiel bild.jpg', + ], + ]); $response->assertStatus(403); });