Skip to content

Commit 31da70b

Browse files
fix: Configure AWS SDK required options for testing
1 parent 906eb8d commit 31da70b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/LoggerTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function testGetLoggerShouldResolveCustomFormatterInstanceFromConfigurati
1919
{
2020
$cloudwatchConfigs = [
2121
'name' => '',
22-
'region' => '',
22+
'region' => 'us-east-1',
2323
'credentials' => [
2424
'key' => '',
2525
'secret' => '',
@@ -70,7 +70,7 @@ public function testGetLoggerShouldResolveDefaultFormatterInstanceWhenConfigIsNu
7070
{
7171
$cloudwatchConfigs = [
7272
'name' => '',
73-
'region' => '',
73+
'region' => 'us-east-1',
7474
'credentials' => [
7575
'key' => '',
7676
'secret' => '',
@@ -121,7 +121,7 @@ public function testGetLoggerShouldResolveDefaultFormatterInstanceWhenConfigIsNo
121121
{
122122
$cloudwatchConfigs = [
123123
'name' => '',
124-
'region' => '',
124+
'region' => 'us-east-1',
125125
'credentials' => [
126126
'key' => '',
127127
'secret' => '',
@@ -171,7 +171,7 @@ public function testGetLoggerShouldResolveCallableFormatter()
171171
{
172172
$cloudwatchConfigs = [
173173
'name' => '',
174-
'region' => '',
174+
'region' => 'us-east-1',
175175
'credentials' => [
176176
'key' => '',
177177
'secret' => '',
@@ -224,7 +224,7 @@ public function testInvalidFormatterWillThrowException()
224224
{
225225
$cloudwatchConfigs = [
226226
'name' => '',
227-
'region' => '',
227+
'region' => 'us-east-1',
228228
'credentials' => [
229229
'key' => '',
230230
'secret' => '',

0 commit comments

Comments
 (0)