* fix tests

This commit is contained in:
Vasilij Dusko | CREATION 2021-04-06 13:18:17 +03:00
parent f1f83b9e5c
commit 68a12fa4f4
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ final class LightSmsTransportFactoryTest extends TransportFactoryTestCase
public function createProvider(): iterable
{
yield [
'lightsms://host.test/external/get/send.php?from=0611223344',
'lightsms://host.test?from=0611223344',
'lightsms://login:token@host.test?from=0611223344',
];
}

View File

@ -31,7 +31,7 @@ final class LightSmsTransportTest extends TransportTestCase
public function toStringProvider(): iterable
{
yield ['lightsms://www.lightsms.com/external/get/send.php?from=from', $this->createTransport()];
yield ['lightsms://www.lightsms.com?from=from', $this->createTransport()];
}
public function supportedMessagesProvider(): iterable