We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 473723f commit 57a02d6Copy full SHA for 57a02d6
Tests/TransportTest.php
@@ -244,7 +244,7 @@ public function testFromDsnAmazonSes()
244
$this->assertInstanceOf(Amazon\Smtp\SesTransport::class, $transport);
245
$this->assertEquals('u$er', $transport->getUsername());
246
$this->assertEquals('pa$s', $transport->getPassword());
247
- $this->assertContains('.sun.', $transport->getStream()->getHost());
+ $this->assertStringContainsString('.sun.', $transport->getStream()->getHost());
248
$this->assertProperties($transport, $dispatcher, $logger);
249
250
$client = $this->createMock(HttpClientInterface::class);
0 commit comments