From b1d918b12459b9ff49ac4a7a1eca9b045bdaa634 Mon Sep 17 00:00:00 2001 From: Guilherme Blanco Date: Sun, 1 Mar 2015 23:57:38 -0500 Subject: [PATCH] Fixed more broken tests. --- .../Cache/Persister/Entity/AbstractEntityPersisterTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Cache/Persister/Entity/AbstractEntityPersisterTest.php b/tests/Doctrine/Tests/ORM/Cache/Persister/Entity/AbstractEntityPersisterTest.php index 662a9dfe6..f682723c1 100644 --- a/tests/Doctrine/Tests/ORM/Cache/Persister/Entity/AbstractEntityPersisterTest.php +++ b/tests/Doctrine/Tests/ORM/Cache/Persister/Entity/AbstractEntityPersisterTest.php @@ -390,7 +390,7 @@ abstract class AbstractEntityPersisterTest extends OrmTestCase { $mapping = $this->em->getClassMetadata('Doctrine\Tests\Models\Cache\Country'); $assoc = array('type' => 1); - $coll = new PersistentCollection($this->em, 'Foo', $mapping); + $coll = new PersistentCollection($this->em, $mapping, null); $persister = $this->createPersisterDefault(); $entity = new Country("Foo"); @@ -406,7 +406,7 @@ abstract class AbstractEntityPersisterTest extends OrmTestCase { $mapping = $this->em->getClassMetadata('Doctrine\Tests\Models\Cache\Country'); $assoc = array('type' => 1); - $coll = new PersistentCollection($this->em, 'Foo', $mapping); + $coll = new PersistentCollection($this->em, $mapping, null); $persister = $this->createPersisterDefault(); $entity = new Country("Foo");