From e11cb7d5cb691328ce7530d8531b3e3885b8b8bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sat, 14 Feb 2026 23:46:39 +0100 Subject: [PATCH] Fixed phpunit tests --- tests/Entity/BulkInfoProviderImportJobPartTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/Entity/BulkInfoProviderImportJobPartTest.php b/tests/Entity/BulkInfoProviderImportJobPartTest.php index fdae58e5..94b05637 100644 --- a/tests/Entity/BulkInfoProviderImportJobPartTest.php +++ b/tests/Entity/BulkInfoProviderImportJobPartTest.php @@ -39,8 +39,6 @@ final class BulkInfoProviderImportJobPartTest extends TestCase public function testConstructor(): void { - $this->assertSame($this->createStub(BulkInfoProviderImportJob::class), $this->jobPart->getJob()); - $this->assertSame($this->createStub(Part::class), $this->jobPart->getPart()); $this->assertSame(BulkImportPartStatus::PENDING, $this->jobPart->getStatus()); $this->assertNull($this->jobPart->getReason()); $this->assertNull($this->jobPart->getCompletedAt());