diff options
author | Christian Flothmann <christian.flothmann@xabbuh.de> | 2014-06-20 23:51:26 +0200 |
---|---|---|
committer | Christian Flothmann <christian.flothmann@xabbuh.de> | 2014-06-21 00:02:36 +0200 |
commit | b0486bfef433b3e62586c6372343783427a58b62 (patch) | |
tree | 30729e86581d28a8861dbea9554e59622bc949a2 /Core/Tests/Authentication/AuthenticationProviderManagerTest.php | |
parent | 2fea8ebda136c2a1457afa8a1428ac18444fd156 (diff) | |
download | symfony-security-b0486bfef433b3e62586c6372343783427a58b62.zip symfony-security-b0486bfef433b3e62586c6372343783427a58b62.tar.gz symfony-security-b0486bfef433b3e62586c6372343783427a58b62.tar.bz2 |
don't disable constructor calls to mockups of classes that extend internal PHP classes
Diffstat (limited to 'Core/Tests/Authentication/AuthenticationProviderManagerTest.php')
-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 b053d73..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(), '', false))) + ->will($this->throwException($this->getMock($exception, null, array(), ''))) ; } |