diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleConfigTranslationTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleConfigTranslationTest.php index f7142ae..5d640ec 100644 --- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleConfigTranslationTest.php +++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleConfigTranslationTest.php @@ -86,7 +86,9 @@ function testConfigTranslation() { $this->assertEqual(count($properties), 1, 'Got the right number of properties with strict translation'); $this->assertEqual($properties['name']->getValue(), $site_name, 'Got the right translation for site name with strict translation'); - // Get non strict translation and check we've got all properties. + // Get non strict translation and check we got all umodified properties. + // Although system.site contains 7 properties, the test system modified + // the site email address, so we get back 6 properties. $translation = $wrapper->getTranslation($langcode, FALSE); $properties = $translation->getProperties(); $this->assertTrue(count($properties) == 6 && count($translation->get('page')) == 3, 'Got the right number of properties with non strict translation');