diff --git a/composer.json b/composer.json index 1a785d59..d414916c 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,6 @@ ], "require": { "php": "^8.1", - "doctrine/deprecations": "^0.5.3 || ^1.0", "doctrine/persistence": "^3.1", "psr/log": "^1.1 || ^2 || ^3" }, diff --git a/tests/Common/DataFixtures/Executor/AbstractExecutorTest.php b/tests/Common/DataFixtures/Executor/AbstractExecutorTest.php index 54dc2090..d8b65575 100644 --- a/tests/Common/DataFixtures/Executor/AbstractExecutorTest.php +++ b/tests/Common/DataFixtures/Executor/AbstractExecutorTest.php @@ -8,19 +8,14 @@ use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; use Doctrine\Common\DataFixtures\Purger\PurgerInterface; -use Doctrine\Deprecations\PHPUnit\VerifyDeprecations; use Doctrine\Persistence\ObjectManager; use PHPUnit\Framework\TestCase; use Psr\Log\Test\TestLogger; final class AbstractExecutorTest extends TestCase { - use VerifyDeprecations; - public function testLogOnLoad(): void { - $this->expectNoDeprecationWithIdentifier('https://github.com/doctrine/data-fixtures/pull/462'); - $logger = new TestLogger(); $executor = $this->bootstrapExecutor(); $executor->setLogger($logger); @@ -36,8 +31,6 @@ public function testLogOnLoad(): void public function testLogOnPurge(): void { - $this->expectNoDeprecationWithIdentifier('https://github.com/doctrine/data-fixtures/pull/462'); - $logger = new TestLogger(); $executor = $this->bootstrapExecutor(); $executor->setLogger($logger);