summaryrefslogtreecommitdiffstats
path: root/Http/Tests/RememberMe
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2016-08-25 10:52:51 -0700
committerFabien Potencier <fabien.potencier@gmail.com>2016-08-25 10:52:51 -0700
commit66a4782ddd0539e1b4f2ae2b4058a04af5d21aab (patch)
tree22eedb3c88bced88bb33694aa8b3241c54c43133 /Http/Tests/RememberMe
parentcecc07439a8f0d2125df9726b99746d1897ee2ea (diff)
parent4e5617e91397d1a8fe5a26bf3fef479f456e3b27 (diff)
downloadsymfony-security-66a4782ddd0539e1b4f2ae2b4058a04af5d21aab.zip
symfony-security-66a4782ddd0539e1b4f2ae2b4058a04af5d21aab.tar.gz
symfony-security-66a4782ddd0539e1b4f2ae2b4058a04af5d21aab.tar.bz2
minor #19736 [FrameworkBundle][Security] Remove useless mocks (Ener-Getick)v2.7.17
This PR was merged into the 2.7 branch. Discussion ---------- [FrameworkBundle][Security] Remove useless mocks | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | Removes mocks causing issues in https://github.com/symfony/symfony/pull/19734. Commits ------- fcd3345 [FrameworkBundle][Security] Remove useless mocks
Diffstat (limited to 'Http/Tests/RememberMe')
-rw-r--r--Http/Tests/RememberMe/ResponseListenerTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/Http/Tests/RememberMe/ResponseListenerTest.php b/Http/Tests/RememberMe/ResponseListenerTest.php
index 78de8e4..23f7df7 100644
--- a/Http/Tests/RememberMe/ResponseListenerTest.php
+++ b/Http/Tests/RememberMe/ResponseListenerTest.php
@@ -15,6 +15,7 @@ use Symfony\Component\HttpKernel\HttpKernelInterface;
use Symfony\Component\Security\Http\RememberMe\ResponseListener;
use Symfony\Component\Security\Http\RememberMe\RememberMeServicesInterface;
use Symfony\Component\HttpFoundation\Request;
+use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\Cookie;
use Symfony\Component\HttpKernel\KernelEvents;
@@ -81,7 +82,7 @@ class ResponseListenerTest extends \PHPUnit_Framework_TestCase
private function getResponse()
{
- $response = $this->getMock('Symfony\Component\HttpFoundation\Response');
+ $response = new Response();
$response->headers = $this->getMock('Symfony\Component\HttpFoundation\ResponseHeaderBag');
return $response;