diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-06-23 09:34:40 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-06-23 09:34:40 +0200 |
commit | 24f753ea356e86d522f673283ed33db294601c09 (patch) | |
tree | 0534f81709b3e09c16b64fbd8c27c95bc7a13c05 /Core/Tests | |
parent | d98bc5bd84d7bb708e4d8f411bec444276b400b2 (diff) | |
parent | 78724ba5928b63e6c229a38ec057e979610ca2ae (diff) | |
download | symfony-security-24f753ea356e86d522f673283ed33db294601c09.zip symfony-security-24f753ea356e86d522f673283ed33db294601c09.tar.gz symfony-security-24f753ea356e86d522f673283ed33db294601c09.tar.bz2 |
Merge branch '2.5'
* 2.5:
[Validator] Add missing ru translations
don't disable constructor calls to mockups of classes that extend internal PHP classes
special handling for the JsonDescriptor to work around changes in PHP's JSON pretty printer
Diffstat (limited to 'Core/Tests')
-rw-r--r-- | Core/Tests/Authentication/AuthenticationProviderManagerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Tests/Authentication/AuthenticationProviderManagerTest.php b/Core/Tests/Authentication/AuthenticationProviderManagerTest.php index f63ef79..df25874 100644 --- a/Core/Tests/Authentication/AuthenticationProviderManagerTest.php +++ b/Core/Tests/Authentication/AuthenticationProviderManagerTest.php @@ -129,7 +129,7 @@ class AuthenticationProviderManagerTest extends \PHPUnit_Framework_TestCase } elseif (null !== $exception) { $provider->expects($this->once()) ->method('authenticate') - ->will($this->throwException($this->getMock($exception, null, array(), '', true))) + ->will($this->throwException($this->getMock($exception, null, array(), ''))) ; } |