diff --git a/core/modules/locale/src/Tests/LocalePluralFormatTest.php b/core/modules/locale/src/Tests/LocalePluralFormatTest.php index 7d6abbf..e6b51f1 100644 --- a/core/modules/locale/src/Tests/LocalePluralFormatTest.php +++ b/core/modules/locale/src/Tests/LocalePluralFormatTest.php @@ -34,7 +34,8 @@ protected function setUp() { } /** - * Tests locale_get_plural() and \Drupal::translation()->formatPlural() functionality. + * Tests locale_get_plural() and \Drupal::translation()->formatPlural() + * functionality. */ public function testGetPluralFormat() { // Import some .po files with formulas to set up the environment. diff --git a/core/modules/search/src/Tests/SearchMultilingualEntityTest.php b/core/modules/search/src/Tests/SearchMultilingualEntityTest.php index 904de8d..1baec76 100644 --- a/core/modules/search/src/Tests/SearchMultilingualEntityTest.php +++ b/core/modules/search/src/Tests/SearchMultilingualEntityTest.php @@ -235,7 +235,8 @@ protected function assertIndexCounts($remaining, $total, $message) { $this->assertEqual($status['total'], $total, 'Total items ' . $message . ' is ' . $total); // Check text in progress section of Search settings page. Note that this - // test avoids using \Drupal::translation()->formatPlural(), so it tests for fragments of text. + // test avoids using \Drupal::translation()->formatPlural(), so it tests for + // fragments of text. $indexed = $total - $remaining; $percent = ($total > 0) ? floor(100 * $indexed / $total) : 100; $this->drupalGet('admin/config/search/pages');