Skip to content

Commit 115620b

Browse files
fix merge
1 parent 090f309 commit 115620b

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Tests/EventListener/SessionListenerTest.php

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -599,14 +599,9 @@ public function testSurrogateMainRequestIsPublic()
599599
public function testGetSessionIsCalledOnce()
600600
{
601601
$session = $this->createMock(Session::class);
602-
<<<<<<< HEAD
603-
$session->expects($this->exactly(2))->method('getName')->willReturn('PHPSESSID');
602+
$session->expects($this->exactly(1))->method('getName')->willReturn('PHPSESSID');
604603
$sessionFactory = $this->createMock(SessionFactory::class);
605604
$sessionFactory->expects($this->once())->method('createSession')->willReturn($session);
606-
=======
607-
$session->expects($this->exactly(1))->method('getName')->willReturn('PHPSESSID');
608-
$sessionStorage = $this->createMock(NativeSessionStorage::class);
609-
>>>>>>> 5.4
610605
$kernel = $this->createMock(KernelInterface::class);
611606

612607
$requestStack = new RequestStack();

0 commit comments

Comments
 (0)