mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 03:56:12 +01:00
[CLEANUP] Drop an unnecessary field in a test (#413)
This commit is contained in:
parent
bd3731934f
commit
345e01e381
1 changed files with 2 additions and 7 deletions
|
@ -19,17 +19,12 @@ class TeaRepositoryTest extends UnitTestCase
|
|||
*/
|
||||
private $subject;
|
||||
|
||||
/**
|
||||
* @var ObjectManagerInterface
|
||||
*/
|
||||
protected $objectManager;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
$this->objectManager = $this->prophesize(ObjectManagerInterface::class)->reveal();
|
||||
$this->subject = new TeaRepository($this->objectManager);
|
||||
$objectManager = $this->prophesize(ObjectManagerInterface::class)->reveal();
|
||||
$this->subject = new TeaRepository($objectManager);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue