diff options
Diffstat (limited to 'modules/path')
-rw-r--r-- | modules/path/path.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/path/path.test b/modules/path/path.test index 41476c306..c80b56e21 100644 --- a/modules/path/path.test +++ b/modules/path/path.test @@ -180,6 +180,7 @@ class PathLanguageTestCase extends DrupalWebTestCase { $edit['langcode'] = 'fr'; $this->drupalPost('admin/config/regional/language/add', $edit, t('Add language')); + drupal_static_reset('language_list'); // Set language negotiation to "Path prefix with fallback". variable_set('language_negotiation', LANGUAGE_NEGOTIATION_PATH); @@ -212,7 +213,8 @@ class PathLanguageTestCase extends DrupalWebTestCase { $this->clickLink(t('add translation')); $edit = array(); $edit['title'] = $this->randomName(); - $edit['body[0][value]'] = $this->randomName(); + $langcode = FIELD_LANGUAGE_NONE; + $edit["body[$langcode][0][value]"] = $this->randomName(); $edit['path'] = $this->randomName(); $this->drupalPost(NULL, $edit, t('Save')); |