Unverified Commit f01b7823 authored by Kim Hemsø Rasmussen's avatar Kim Hemsø Rasmussen Committed by Marco Pivetta

Removed a few linebreaks

parent 0b754b59
...@@ -823,7 +823,6 @@ class ConnectionTest extends \Doctrine\Tests\DbalTestCase ...@@ -823,7 +823,6 @@ class ConnectionTest extends \Doctrine\Tests\DbalTestCase
*/ */
public function testThrowsExceptionWhenInValidPlatformSpecified(): void public function testThrowsExceptionWhenInValidPlatformSpecified(): void
{ {
$connectionParams = $this->params; $connectionParams = $this->params;
$connectionParams['platform'] = new \stdClass(); $connectionParams['platform'] = new \stdClass();
......
...@@ -64,8 +64,8 @@ class DBALExceptionTest extends DbalTestCase ...@@ -64,8 +64,8 @@ class DBALExceptionTest extends DbalTestCase
*/ */
public function testInvalidPlatformSpecifiedObject(): void public function testInvalidPlatformSpecifiedObject(): void
{ {
$exception = DBALException::invalidPlatformSpecified(new \stdClass()); $exception = DBALException::invalidPlatformSpecified(new \stdClass());
self::assertSame( self::assertSame(
"Option 'platform' must be a subtype of 'Doctrine\DBAL\Platforms\AbstractPlatform', instance of 'stdClass' given", "Option 'platform' must be a subtype of 'Doctrine\DBAL\Platforms\AbstractPlatform', instance of 'stdClass' given",
$exception->getMessage() $exception->getMessage()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment