Skip to content

Commit 16dfa5a

Browse files
Merge branch '5.1' into 5.2
* 5.1: More cleanups and fixes
2 parents 1494c79 + 1c19203 commit 16dfa5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Session/Storage/Handler/MarshallingSessionHandlerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ class MarshallingSessionHandlerTest extends TestCase
3434

3535
protected function setUp(): void
3636
{
37-
$this->marshaller = $this->getMockBuilder(MarshallerInterface::class)->getMock();
38-
$this->handler = $this->getMockBuilder(AbstractSessionHandler::class)->getMock();
37+
$this->marshaller = $this->createMock(MarshallerInterface::class);
38+
$this->handler = $this->createMock(AbstractSessionHandler::class);
3939
}
4040

4141
public function testOpen()

0 commit comments

Comments
 (0)