From 2d398169544524942d2fb46e320ee7069364f5ae Mon Sep 17 00:00:00 2001 From: philipp lang Date: Tue, 2 Jan 2024 01:28:16 +0100 Subject: [PATCH] Lint --- tests/Feature/UploadTest.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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); });