diff --git a/tests/Doctrine/Tests/ORM/Proxy/ProxyFactoryTest.php b/tests/Doctrine/Tests/ORM/Proxy/ProxyFactoryTest.php index feeb954a3..b738f9dff 100644 --- a/tests/Doctrine/Tests/ORM/Proxy/ProxyFactoryTest.php +++ b/tests/Doctrine/Tests/ORM/Proxy/ProxyFactoryTest.php @@ -71,6 +71,7 @@ class ProxyFactoryTest extends \Doctrine\Tests\OrmTestCase $proxy->getDescription(); } + public function testSkipMappedSuperClassesOnGeneration(): void { $cm = new ClassMetadata(\stdClass::class); @@ -78,7 +79,7 @@ class ProxyFactoryTest extends \Doctrine\Tests\OrmTestCase $num = $this->proxyFactory->generateProxyClasses([$cm]); - self::assertSame(0, $num, "No proxies generated."); + self::assertSame(0, $num, 'No proxies generated.'); } /** @@ -91,7 +92,7 @@ class ProxyFactoryTest extends \Doctrine\Tests\OrmTestCase $num = $this->proxyFactory->generateProxyClasses([$cm]); - self::assertSame(0, $num, "No proxies generated."); + self::assertSame(0, $num, 'No proxies generated.'); } /**