From fa99b94420325541c8d71943678a4b9e69215213 Mon Sep 17 00:00:00 2001 From: jwage Date: Wed, 11 Nov 2009 21:44:04 +0000 Subject: [PATCH] [2.0] Increasing time allowed for hydration performance test --- .../Doctrine/Tests/ORM/Performance/HydrationPerformanceTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Performance/HydrationPerformanceTest.php b/tests/Doctrine/Tests/ORM/Performance/HydrationPerformanceTest.php index d9c206b3d..a8a16e428 100644 --- a/tests/Doctrine/Tests/ORM/Performance/HydrationPerformanceTest.php +++ b/tests/Doctrine/Tests/ORM/Performance/HydrationPerformanceTest.php @@ -313,7 +313,7 @@ class HydrationPerformanceTest extends \Doctrine\Tests\OrmPerformanceTestCase $stmt = new HydratorMockStatement($resultSet); $hydrator = new \Doctrine\ORM\Internal\Hydration\ObjectHydrator($this->_em); - $this->setMaxRunningTime(4); + $this->setMaxRunningTime(5); $s = microtime(true); $result = $hydrator->hydrateAll($stmt, $rsm); $e = microtime(true);