1
0
mirror of synced 2025-01-19 15:01:40 +03:00

DDC-3434 - removed unneeded escaping sequences

This commit is contained in:
Marco Pivetta 2014-12-05 17:09:59 +01:00
parent a6cf714f41
commit 0c9a898ccd

View File

@ -200,7 +200,7 @@ class LimitSubqueryOutputWalkerTest extends PaginationTestCase
public function testCountQueryWithArithmeticOrderByCondition() public function testCountQueryWithArithmeticOrderByCondition()
{ {
$query = $this->entityManager->createQuery( $query = $this->entityManager->createQuery(
'SELECT a FROM Doctrine\\Tests\\ORM\\Tools\\Pagination\\Author a ORDER BY (1 - 1000) * 1 DESC' 'SELECT a FROM Doctrine\Tests\ORM\Tools\Pagination\Author a ORDER BY (1 - 1000) * 1 DESC'
); );
$this->entityManager->getConnection()->setDatabasePlatform(new MySqlPlatform()); $this->entityManager->getConnection()->setDatabasePlatform(new MySqlPlatform());