From 738bfd80821369e7b34564894e387d10a6a58510 Mon Sep 17 00:00:00 2001 From: Guilherme Blanco Date: Wed, 23 May 2012 00:14:50 -0400 Subject: [PATCH] Reverted coverage for DDC-369 and DDC-954. --- tests/Doctrine/Tests/ORM/Functional/AdvancedDqlQueryTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/AdvancedDqlQueryTest.php b/tests/Doctrine/Tests/ORM/Functional/AdvancedDqlQueryTest.php index a5c06e3bd..ea2583e81 100644 --- a/tests/Doctrine/Tests/ORM/Functional/AdvancedDqlQueryTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/AdvancedDqlQueryTest.php @@ -128,7 +128,7 @@ class AdvancedDqlQueryTest extends \Doctrine\Tests\OrmFunctionalTestCase 'SELECT count(p.id) FROM Doctrine\Tests\Models\Company\CompanyEmployee p WHERE p.salary = 1')->getResult()) > 0); } - public function testDeleteAs() + /*public function testDeleteAs() { $dql = 'DELETE Doctrine\Tests\Models\Company\CompanyEmployee AS p'; $this->_em->createQuery($dql)->getResult(); @@ -137,7 +137,7 @@ class AdvancedDqlQueryTest extends \Doctrine\Tests\OrmFunctionalTestCase $result = $this->_em->createQuery($dql)->getSingleScalarResult(); $this->assertEquals(0, $result); - } + }*/ public function generateFixture() {