Update Common to latest to have the current Persistence Interface
This commit is contained in:
parent
45308d5f79
commit
97a6caf059
2 changed files with 3 additions and 3 deletions
2
lib/vendor/doctrine-common
vendored
2
lib/vendor/doctrine-common
vendored
|
@ -1 +1 @@
|
||||||
Subproject commit ef431a14852d7e8f2d0ea789487509ab266e5ce2
|
Subproject commit b2fd909b4b5476df01744c9d34c7a23723a687b6
|
|
@ -104,7 +104,7 @@ class QueryCacheTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
|
|
||||||
$query = $this->_em->createQuery('select ux from Doctrine\Tests\Models\CMS\CmsUser ux');
|
$query = $this->_em->createQuery('select ux from Doctrine\Tests\Models\CMS\CmsUser ux');
|
||||||
|
|
||||||
$cache = $this->getMock('Doctrine\Common\Cache\ArrayCache', array('doFetch', 'doSave'));
|
$cache = $this->getMock('Doctrine\Common\Cache\ArrayCache', array('doFetch', 'doSave', 'doGetStats'));
|
||||||
$cache->expects($this->at(0))
|
$cache->expects($this->at(0))
|
||||||
->method('doFetch')
|
->method('doFetch')
|
||||||
->with($this->isType('string'))
|
->with($this->isType('string'))
|
||||||
|
@ -135,7 +135,7 @@ class QueryCacheTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||||
->will($this->returnValue($sqlExecMock));
|
->will($this->returnValue($sqlExecMock));
|
||||||
|
|
||||||
$cache = $this->getMock('Doctrine\Common\Cache\CacheProvider',
|
$cache = $this->getMock('Doctrine\Common\Cache\CacheProvider',
|
||||||
array('doFetch', 'doContains', 'doSave', 'doDelete', 'doFlush'));
|
array('doFetch', 'doContains', 'doSave', 'doDelete', 'doFlush', 'doGetStats'));
|
||||||
$cache->expects($this->once())
|
$cache->expects($this->once())
|
||||||
->method('doFetch')
|
->method('doFetch')
|
||||||
->with($this->isType('string'))
|
->with($this->isType('string'))
|
||||||
|
|
Loading…
Add table
Reference in a new issue