From c51258e759afdb17f1fd1fe83bc12baaef6309d6 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Fri, 12 Jul 2024 13:35:52 +0200 Subject: [PATCH] Fix tests --- tests/VersionParserTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/VersionParserTest.php b/tests/VersionParserTest.php index 9e002958..9f476740 100644 --- a/tests/VersionParserTest.php +++ b/tests/VersionParserTest.php @@ -820,8 +820,8 @@ public function testNormalizeStability() $this->assertSame($expectedValue, $result); - $stability = 'no-rc'; - $expectedValue = $stability; + $stability = 'BeTa'; + $expectedValue = 'beta'; $result = $parser->normalizeStability($stability); $this->assertSame($expectedValue, $result);