From 3dda1cdc61721ea0c8de58f726990a76b6937e8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Gomez?= Date: Thu, 12 Dec 2013 17:06:35 +0000 Subject: [PATCH] Fixed PropelUserProvider test --- Tests/Security/User/PropelUserProviderTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Tests/Security/User/PropelUserProviderTest.php b/Tests/Security/User/PropelUserProviderTest.php index fb320d4..d0c667f 100644 --- a/Tests/Security/User/PropelUserProviderTest.php +++ b/Tests/Security/User/PropelUserProviderTest.php @@ -10,6 +10,8 @@ namespace Propel\PropelBundle\Tests\Security\User; +use Propel\Generator\Util\QuickBuilder; + use Propel\PropelBundle\Security\User\PropelUserProvider; use Propel\PropelBundle\Tests\Fixtures\Model\User; use Propel\PropelBundle\Tests\TestCase; @@ -37,7 +39,7 @@ SCHEMA; $builder = new QuickBuilder(); $builder->setSchema($schema); - $classTargets = null; + $classTargets = array('tablemap', 'object', 'query', /*'objectstub',*/ 'querystub'); $this->con = $builder->build($dsn = null, $user = null, $pass = null, $adapter = null, $classTargets); }