Skip to content

Commit

Permalink
Merge pull request #1430 from keboola/martin-remove-public-files-test…
Browse files Browse the repository at this point in the history
…s-ST-2479

AWS - Do not test public files
  • Loading branch information
jirkasemmler authored Dec 10, 2024
2 parents dcd5336 + eeee4c6 commit edb2966
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 edb2966

Please sign in to comment.