diff --git a/core/modules/locale/src/Tests/LocaleImportFunctionalTest.php b/core/modules/locale/src/Tests/LocaleImportFunctionalTest.php index c4820ea..7dc4baf 100644 --- a/core/modules/locale/src/Tests/LocaleImportFunctionalTest.php +++ b/core/modules/locale/src/Tests/LocaleImportFunctionalTest.php @@ -336,17 +336,17 @@ public function testConfigPoFile() { } /** - * Tests .po file import with usert.settings configuration. + * Tests .po file import with user.settings configuration. */ public function testConfigtranslationImportingPoFile() { - // Set the language code + // Set the language code. $langcode = 'de'; // Import a .po file to translate. $this->importPoFile($this->getPoFileWithConfigDe(), array( 'langcode' => $langcode)); - //Check the Anonymous string is translated + // Check that the 'Anonymous' string is translated. $config = \Drupal::languageManager()->getLanguageConfigOverride($langcode, 'user.settings'); $this->assertEqual($config->get('anonymous'), 'Anonymous German'); }