Skip to content

Commit

Permalink
AWS - Do not test public files
Browse files Browse the repository at this point in the history
  • Loading branch information
Halama committed Dec 6, 2024
1 parent dcd5336 commit eeee4c6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tests/File/AwsFileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,6 @@ public function uploadData()
{
$path = __DIR__ . '/../_data/files.upload.txt';
$uploadData = [
'isPublic: true' => [
$path,
(new FileUploadOptions())->setIsPublic(true),
],
'isPublic: false' => [
$path,
(new FileUploadOptions())
Expand All @@ -118,7 +114,7 @@ public function uploadData()
'isPublic: false, isPermanent: true, tags: \'sapi-import\', \'martin\'' => [
$path,
(new FileUploadOptions())
->setIsPublic(true)
->setIsPublic(false)
->setIsPermanent(true)
->setTags(['sapi-import', 'martin']),
],
Expand Down

0 comments on commit eeee4c6

Please sign in to comment.