Skip to content

Commit

Permalink
More cleanups and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Jan 27, 2021
1 parent 1d20c92 commit 1c19203
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class MarshallingSessionHandlerTest extends TestCase

protected function setUp(): void
{
$this->marshaller = $this->getMockBuilder(MarshallerInterface::class)->getMock();
$this->handler = $this->getMockBuilder(AbstractSessionHandler::class)->getMock();
$this->marshaller = $this->createMock(MarshallerInterface::class);
$this->handler = $this->createMock(AbstractSessionHandler::class);
}

public function testOpen()
Expand Down

0 comments on commit 1c19203

Please sign in to comment.