From 0bc91f87339601bf2d8af607b8e67735eefa66b4 Mon Sep 17 00:00:00 2001 From: "Issei.M" Date: Wed, 16 Aug 2017 20:47:54 +0900 Subject: [PATCH] Replace double quote with single quote --- tests/Doctrine/Tests/ORM/Proxy/ProxyFactoryTest.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Proxy/ProxyFactoryTest.php b/tests/Doctrine/Tests/ORM/Proxy/ProxyFactoryTest.php index a26465f37..9a575b80a 100644 --- a/tests/Doctrine/Tests/ORM/Proxy/ProxyFactoryTest.php +++ b/tests/Doctrine/Tests/ORM/Proxy/ProxyFactoryTest.php @@ -75,6 +75,7 @@ class ProxyFactoryTest extends OrmTestCase $proxy->getDescription(); } + public function testSkipMappedSuperClassesOnGeneration(): void { $cm = new ClassMetadata(\stdClass::class); @@ -82,7 +83,7 @@ class ProxyFactoryTest extends OrmTestCase $num = $this->proxyFactory->generateProxyClasses([$cm]); - self::assertSame(0, $num, "No proxies generated."); + self::assertSame(0, $num, 'No proxies generated.'); } /** @@ -95,7 +96,7 @@ class ProxyFactoryTest extends OrmTestCase $num = $this->proxyFactory->generateProxyClasses([$cm]); - self::assertSame(0, $num, "No proxies generated."); + self::assertSame(0, $num, 'No proxies generated.'); } /**