We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 034f476 commit 4b78d03Copy full SHA for 4b78d03
src/Symfony/Component/Security/Http/Tests/Firewall/SwitchUserListenerTest.php
@@ -187,9 +187,15 @@ public function testExitUserDoesNotDispatchEventWithStringUser()
187
$this
188
->request
189
->expects($this->any())
190
- ->method('all')
+ ->method('get')
191
->with('_switch_user')
192
->willReturn('_exit');
193
+ $this
194
+ ->request
195
+ ->query
196
+ ->expects($this->any())
197
+ ->method('all')
198
+ ->will($this->returnValue(array()));
199
200
201
0 commit comments