diff --git a/core/lib/Drupal/Core/Extension/InfoParserDynamic.php b/core/lib/Drupal/Core/Extension/InfoParserDynamic.php index 64786a8..6a24c6d 100644 --- a/core/lib/Drupal/Core/Extension/InfoParserDynamic.php +++ b/core/lib/Drupal/Core/Extension/InfoParserDynamic.php @@ -43,7 +43,7 @@ public function parse($filename) { $version = $version . substr($parsed_info['version'], 7); // If the stability version of Drupal core is lower, use its version. // Therefore if core's version is 8.1.x-alpha and the module's version - // is VERSION-beta in the info.yml file the displayed version with be + // is VERSION-beta in the info.yml file the displayed version will be // 8.1.x-alpha. if (version_compare($drupal_version, $version) < 0) { $version = $drupal_version; diff --git a/core/tests/Drupal/Tests/Core/Extension/InfoParserDynamicTest.php b/core/tests/Drupal/Tests/Core/Extension/InfoParserDynamicTest.php index cc27e83..8f09a18 100644 --- a/core/tests/Drupal/Tests/Core/Extension/InfoParserDynamicTest.php +++ b/core/tests/Drupal/Tests/Core/Extension/InfoParserDynamicTest.php @@ -18,7 +18,7 @@ * * @group Extension */ -class InfoParserUnitTest extends UnitTestCase { +class InfoParserDynamicTest extends UnitTestCase { /** * Tests VERSION replacement.