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 129c884 commit 510182d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/SqsClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function testShouldAllowGetAwsClientIfSingleClientProvided()
$awsClient = (new Sdk(['Sqs' => [
'key' => '',
'secret' => '',
'region' => '',
'region' => 'us-west-2',
'version' => '2012-11-05',
'endpoint' => 'http://localhost',
]]))->createSqs();
Expand All @@ -31,7 +31,7 @@ public function testShouldAllowGetAwsClientIfMultipleClientProvided()
$awsClient = (new Sdk(['Sqs' => [
'key' => '',
'secret' => '',
'region' => '',
'region' => 'us-west-2',
'version' => '2012-11-05',
'endpoint' => 'http://localhost',
]]))->createMultiRegionSqs();
Expand Down

0 comments on commit 510182d

Please sign in to comment.