Skip to content

Commit a2b6082

Browse files
authored
Merge pull request #1284 from andrewmy/fix-aws-sdk-token
Fix AWS SDK token parameter
2 parents a115d66 + 8b1bb22 commit a2b6082

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

Diff for: pkg/sns/Tests/SnsClientTest.php

-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ public function testShouldAllowGetAwsClientIfSingleClientProvided()
1616
$awsClient = (new Sdk(['Sns' => [
1717
'key' => '',
1818
'secret' => '',
19-
'token' => '',
2019
'region' => '',
2120
'version' => '2010-03-31',
2221
'endpoint' => 'http://localhost',
@@ -32,7 +31,6 @@ public function testShouldAllowGetAwsClientIfMultipleClientProvided()
3231
$awsClient = (new Sdk(['Sns' => [
3332
'key' => '',
3433
'secret' => '',
35-
'token' => '',
3634
'region' => '',
3735
'version' => '2010-03-31',
3836
'endpoint' => 'http://localhost',

Diff for: pkg/sqs/Tests/SqsClientTest.php

-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ public function testShouldAllowGetAwsClientIfSingleClientProvided()
1616
$awsClient = (new Sdk(['Sqs' => [
1717
'key' => '',
1818
'secret' => '',
19-
'token' => '',
2019
'region' => '',
2120
'version' => '2012-11-05',
2221
'endpoint' => 'http://localhost',
@@ -32,7 +31,6 @@ public function testShouldAllowGetAwsClientIfMultipleClientProvided()
3231
$awsClient = (new Sdk(['Sqs' => [
3332
'key' => '',
3433
'secret' => '',
35-
'token' => '',
3634
'region' => '',
3735
'version' => '2012-11-05',
3836
'endpoint' => 'http://localhost',

0 commit comments

Comments
 (0)