From 6aa327f5a3bed68dbecd2823e80cb9c2b8caa030 Mon Sep 17 00:00:00 2001 From: Jesse Rushlow Date: Wed, 24 Apr 2024 05:17:51 -0400 Subject: [PATCH] remove legacy test dependencies --- tests/Maker/MakeSerializerEncoderTest.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/Maker/MakeSerializerEncoderTest.php b/tests/Maker/MakeSerializerEncoderTest.php index 2a0a0932d..75f1702f7 100644 --- a/tests/Maker/MakeSerializerEncoderTest.php +++ b/tests/Maker/MakeSerializerEncoderTest.php @@ -25,11 +25,6 @@ protected function getMakerClass(): string public function getTestDetails(): \Generator { yield 'it_makes_serializer_encoder' => [$this->createMakerTest() - // serializer-pack 1.1 requires symfony/property-info >= 5.4 - // adding symfony/serializer-pack:* as an extra depends allows - // us to use serializer-pack < 1.1 which does not conflict with - // property-info < 5.4. E.g. Symfony 5.3 tests. See PR 1063 - ->addExtraDependencies('symfony/serializer-pack:*') ->run(function (MakerTestRunner $runner) { if (70000 >= $runner->getSymfonyVersion()) { $this->markTestSkipped('Legacy Symfony 6.4 Test'); @@ -52,11 +47,6 @@ public function getTestDetails(): \Generator /* @legacy - Remove when MakerBundle no longer supports Symfony 6.4 */ yield 'it_makes_serializer_encoder_legacy' => [$this->createMakerTest() - // serializer-pack 1.1 requires symfony/property-info >= 5.4 - // adding symfony/serializer-pack:* as an extra depends allows - // us to use serializer-pack < 1.1 which does not conflict with - // property-info < 5.4. E.g. Symfony 5.3 tests. See PR 1063 - ->addExtraDependencies('symfony/serializer-pack:*') ->run(function (MakerTestRunner $runner) { if (70000 < $runner->getSymfonyVersion()) { $this->markTestSkipped('Legacy Symfony 6.4 Test');