summaryrefslogtreecommitdiffstats
path: root/Tests/Http/EntryPoint/FormAuthenticationEntryPointTest.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2012-08-31 19:17:17 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2012-08-31 19:17:17 +0200
commitdf739cea8c8268672bdc232e08c5f4f96f1ea230 (patch)
treeea172efcd808908078ac86bd4d8a6db5b3b20941 /Tests/Http/EntryPoint/FormAuthenticationEntryPointTest.php
parent8c3556ab7015cb5a92f0e6e6455f9de5312e7b99 (diff)
downloadsymfony-security-df739cea8c8268672bdc232e08c5f4f96f1ea230.zip
symfony-security-df739cea8c8268672bdc232e08c5f4f96f1ea230.tar.gz
symfony-security-df739cea8c8268672bdc232e08c5f4f96f1ea230.tar.bz2
[Security] fixed typo in a test
Diffstat (limited to 'Tests/Http/EntryPoint/FormAuthenticationEntryPointTest.php')
-rw-r--r--Tests/Http/EntryPoint/FormAuthenticationEntryPointTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Http/EntryPoint/FormAuthenticationEntryPointTest.php b/Tests/Http/EntryPoint/FormAuthenticationEntryPointTest.php
index 2e72340..1cf2c2d 100644
--- a/Tests/Http/EntryPoint/FormAuthenticationEntryPointTest.php
+++ b/Tests/Http/EntryPoint/FormAuthenticationEntryPointTest.php
@@ -64,7 +64,7 @@ class FormAuthenticationEntryPointTest extends \PHPUnit_Framework_TestCase
$httpKernel
->expects($this->once())
->method('handle')
- ->with($this->equalTo($request), $this->equalTo(HttpKernelInterface::SUB_REQUEST))
+ ->with($this->equalTo($subRequest), $this->equalTo(HttpKernelInterface::SUB_REQUEST))
->will($this->returnValue($response))
;