Skip to content

Commit

Permalink
Merge branch '5.1' into 5.2
Browse files Browse the repository at this point in the history
* 5.1:
  [Notifier] Fix parsing Dsn with empty user/password
  Remove void return type from test methods
  [Notifier] Use assertSame()
  • Loading branch information
fabpot committed Dec 18, 2020
2 parents 6bb8e7a + d0c5631 commit 0871104
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Transport/AmazonSqsIntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
class AmazonSqsIntegrationTest extends TestCase
{
public function testConnectionSendToFifoQueueAndGet(): void
public function testConnectionSendToFifoQueueAndGet()
{
if (!getenv('MESSENGER_SQS_FIFO_QUEUE_DSN')) {
$this->markTestSkipped('The "MESSENGER_SQS_FIFO_QUEUE_DSN" environment variable is required.');
Expand All @@ -30,7 +30,7 @@ public function testConnectionSendToFifoQueueAndGet(): void
$this->execute(getenv('MESSENGER_SQS_FIFO_QUEUE_DSN'));
}

public function testConnectionSendAndGet(): void
public function testConnectionSendAndGet()
{
if (!getenv('MESSENGER_SQS_DSN')) {
$this->markTestSkipped('The "MESSENGER_SQS_DSN" environment variable is required.');
Expand Down

0 comments on commit 0871104

Please sign in to comment.