Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
Credits to VincentLanglet
  • Loading branch information
ruudk committed Oct 15, 2023
1 parent 337cb18 commit 2e657d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/SnsClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function testShouldAllowGetAwsClientIfSingleClientProvided()
$awsClient = (new Sdk(['Sns' => [
'key' => '',
'secret' => '',
'region' => '',
'region' => 'us-west-2',
'version' => '2010-03-31',
'endpoint' => 'http://localhost',
]]))->createSns();
Expand All @@ -31,7 +31,7 @@ public function testShouldAllowGetAwsClientIfMultipleClientProvided()
$awsClient = (new Sdk(['Sns' => [
'key' => '',
'secret' => '',
'region' => '',
'region' => 'us-west-2',
'version' => '2010-03-31',
'endpoint' => 'http://localhost',
]]))->createMultiRegionSns();
Expand Down

0 comments on commit 2e657d5

Please sign in to comment.