diff --git a/tests/Command/GenerateJsonCommandTest.php b/tests/Command/GenerateJsonCommandTest.php index afcf2b2..b1d723f 100644 --- a/tests/Command/GenerateJsonCommandTest.php +++ b/tests/Command/GenerateJsonCommandTest.php @@ -137,6 +137,7 @@ public function versionListProvider(): iterable new Prestashop('9.0.4'), new Prestashop('8.2.0'), new Prestashop('8.1.5'), + new Prestashop('8.2.1'), ]]; // Scenario to avoid adding 1.7 versions as a previous major yield [[ @@ -150,6 +151,7 @@ public function versionListProvider(): iterable new Prestashop('9.0.0'), new Prestashop('8.2.0'), new Prestashop('8.1.5'), + new Prestashop('8.2.1'), ]]; // Scenario to avoid considering beta as a stable channel yield [[ @@ -165,6 +167,7 @@ public function versionListProvider(): iterable new Prestashop('9.0.0'), new Prestashop('8.2.0'), new Prestashop('8.1.5'), + new Prestashop('8.2.1'), ]]; } } diff --git a/tests/Model/PrestaShopTest.php b/tests/Model/PrestaShopTest.php index 5f005ee..8a858c8 100644 --- a/tests/Model/PrestaShopTest.php +++ b/tests/Model/PrestaShopTest.php @@ -115,7 +115,7 @@ public function nextVersionsProvider(): iterable yield ['8.0.0', '9.0.0', '8.1.0', '8.0.1']; yield ['8.0.0-rc.1', '9.0.0', '8.1.0', '8.0.1']; yield ['8.0.0-beta.1', '9.0.0', '8.1.0', '8.0.1']; - yield ['8.1.4', '9.0.0', '8.2.0', '8.1.5']; + yield ['8.1.4', '9.0.0', '8.2.0', '8.1.5', '8.2.1']; yield ['9.0.0', '10.0.0', '9.1.0', '9.0.1']; } }