diff options
Diffstat (limited to 'modules/locale')
-rw-r--r-- | modules/locale/locale.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/locale/locale.test b/modules/locale/locale.test index 42a6dbc48..3ae6d91a5 100644 --- a/modules/locale/locale.test +++ b/modules/locale/locale.test @@ -2137,6 +2137,11 @@ class LocaleMultilingualFieldsFunctionalTest extends DrupalWebTestCase { ); $this->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type')); $this->assertRaw(t('The content type %type has been updated.', array('%type' => 'Basic page')), t('Basic page content type has been updated.')); + + // Make node body translatable. + $field = field_info_field('body'); + $field['translatable'] = TRUE; + field_update_field($field); } /** |