1
0
mirror of synced 2025-02-02 21:41: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 de6d932e8c
commit 0bc91f8733
No known key found for this signature in database
GPG Key ID: 4167D3337FD9D629

View File

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