We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6e0474 commit aee7466Copy full SHA for aee7466
tests/Integration/Cache/DynamoDbStoreTest.php
@@ -78,8 +78,8 @@ protected function getEnvironmentSetUp($app)
78
79
$app['config']->set('cache.stores.dynamodb', [
80
'driver' => 'dynamodb',
81
- 'key' => env('AWS_ACCESS_KEY_ID'),
82
- 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'key' => env('AWS_ACCESS_KEY_ID', 'random-key'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY', 'random-secret'),
83
'region' => 'us-east-1',
84
'table' => env('DYNAMODB_CACHE_TABLE', 'laravel_test'),
85
'endpoint' => env('DYNAMODB_ENDPOINT'),
0 commit comments