From 7f20a32db31d3d0e7b288b4e5c358a3f0334c4c0 Mon Sep 17 00:00:00 2001 From: Michael Ridgway Date: Tue, 26 Jul 2011 17:39:57 -0400 Subject: [PATCH] Removing debug comment --- tests/Doctrine/Tests/ORM/Functional/NativeQueryTest.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/NativeQueryTest.php b/tests/Doctrine/Tests/ORM/Functional/NativeQueryTest.php index c8347d66d..a8d5873f7 100644 --- a/tests/Doctrine/Tests/ORM/Functional/NativeQueryTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/NativeQueryTest.php @@ -244,9 +244,6 @@ class NativeQueryTest extends \Doctrine\Tests\OrmFunctionalTestCase $query->setParameter(1, $phone->phonenumber); $phone = $query->getSingleResult(); -// \Doctrine\Common\Util\Debug::dump($phone); -// die(); - $this->assertNotNull($phone->getUser()); $this->assertEquals($user->name, $phone->getUser()->getName()); }