1
0
mirror of synced 2025-02-02 13:31:45 +03:00

Replace double quote with single quote

This commit is contained in:
Issei.M 2017-08-16 20:47:54 +09:00 committed by Marco Pivetta
parent f1534610e1
commit f736acc8f5
No known key found for this signature in database
GPG Key ID: 4167D3337FD9D629

View File

@ -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.');
}
/**