Skip to content

Commit 1c19203

Browse files
More cleanups and fixes
1 parent 1d20c92 commit 1c19203

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)