mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 03:16: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;
|
private $subject;
|
||||||
|
|
||||||
/**
|
|
||||||
* @var ObjectManagerInterface
|
|
||||||
*/
|
|
||||||
protected $objectManager;
|
|
||||||
|
|
||||||
protected function setUp(): void
|
protected function setUp(): void
|
||||||
{
|
{
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
||||||
$this->objectManager = $this->prophesize(ObjectManagerInterface::class)->reveal();
|
$objectManager = $this->prophesize(ObjectManagerInterface::class)->reveal();
|
||||||
$this->subject = new TeaRepository($this->objectManager);
|
$this->subject = new TeaRepository($objectManager);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue