diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigLocaleOverrideWebTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigLocaleOverrideWebTest.php index 9f9579d..fee4c99 100644 --- a/core/modules/config/lib/Drupal/config/Tests/ConfigLocaleOverrideWebTest.php +++ b/core/modules/config/lib/Drupal/config/Tests/ConfigLocaleOverrideWebTest.php @@ -14,7 +14,7 @@ */ class ConfigLocaleOverrideWebTest extends WebTestBase { - public static $modules = array('locale', 'language', 'system', 'config_test'); + public static $modules = array('locale', 'language', 'system'); public static function getInfo() { return array( @@ -37,6 +37,7 @@ function testSiteNameTranslation() { // Add French and make it the site default language. $this->drupalPost('admin/config/regional/language/add', array('predefined_langcode' => 'fr'), t('Add language')); + config('locale.config.fr.system.site')->set('name', 'French site name')->save(); $this->drupalLogout();