Skip to content

Commit a21e5e1

Browse files
committed
Fix test failures
1 parent 43e368b commit a21e5e1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pkg/sqs/Tests/SqsConnectionFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function testCouldBeConstructedWithClient()
5353
{
5454
$client = $this->createMock(SqsClient::class);
5555

56-
$factory = new SqsConnectionFactory($client);
56+
$factory = new SqsConnectionFactory($client, ['lazy' => false]);
5757

5858
$context = $factory->createContext();
5959

pkg/sqs/Tests/Symfony/SqsTransportFactoryTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ public function testShouldAllowAddConfiguration()
6464
'version' => 'theVersion',
6565
'lazy' => false,
6666
'endpoint' => 'theEndpoint',
67+
'client' => null,
6768
], $config);
6869
}
6970

0 commit comments

Comments
 (0)