mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 01:36:14 +02:00

[CLEANUP] Drop an unnecessary field in a test (#413)

This commit is contained in:
Oliver Klee 2022-04-03 02:25:42 +02:00 committed by GitHub
parent bd3731934f
commit 345e01e381
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}
/**