Skip to content

Commit

Permalink
name
Browse files Browse the repository at this point in the history
  • Loading branch information
UlrichEckhardt committed Apr 27, 2020
1 parent f2152a6 commit 208ebd3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/AbstractRequesterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ protected function setUp()
{
parent::setUp();

$this->requester = $this->getMockBuilder(AbstractRequester::class)
$name = AbstractRequester::class;
$this->requester = $this->getMockBuilder($name)
->setMethods(['handleRequest'])
->disableOriginalConstructor()
->getMock();
Expand Down

0 comments on commit 208ebd3

Please sign in to comment.