diff --git a/tests/Vinelab/Cdn/CdnTest.php b/tests/Vinelab/Cdn/CdnTest.php index 2e30f80..390f424 100755 --- a/tests/Vinelab/Cdn/CdnTest.php +++ b/tests/Vinelab/Cdn/CdnTest.php @@ -87,6 +87,7 @@ public function testPushCommand() 's3' => [ 'region' => 'us-standard', 'version' => 'latest', + 'http' => null, 'buckets' => [ 'my-bucket-name' => '*', ], @@ -100,8 +101,6 @@ public function testPushCommand() 'expires' => gmdate('D, d M Y H:i:s T', strtotime('+5 years')), 'cache-control' => 'max-age=2628000', - -'version' => '', ], ], ], diff --git a/tests/Vinelab/Cdn/Providers/AwsS3ProviderTest.php b/tests/Vinelab/Cdn/Providers/AwsS3ProviderTest.php index b368053..6fb3389 100755 --- a/tests/Vinelab/Cdn/Providers/AwsS3ProviderTest.php +++ b/tests/Vinelab/Cdn/Providers/AwsS3ProviderTest.php @@ -87,6 +87,7 @@ public function testInitializingObject() 'expires' => gmdate('D, d M Y H:i:s T', strtotime('+5 years')), 'cache-control' => 'max-age=2628000', 'version' => null, + 'http' => null, ], ], ], @@ -120,6 +121,7 @@ public function testUploadingAssets() 'expires' => gmdate('D, d M Y H:i:s T', strtotime('+5 years')), 'cache-control' => 'max-age=2628000', 'version' => null, + 'http' => null, ], ], ], @@ -155,6 +157,7 @@ public function testUrlGenerator() 'expires' => gmdate('D, d M Y H:i:s T', strtotime('+5 years')), 'cache-control' => 'max-age=2628000', 'version' => null, + 'http' => null, ], ], ], @@ -190,6 +193,7 @@ public function testEmptyUrlGenerator() 'expires' => gmdate('D, d M Y H:i:s T', strtotime('+5 years')), 'cache-control' => 'max-age=2628000', 'version' => null, + 'http' => null, ], ], ],