diff options
Diffstat (limited to 'modules/translation/translation.test')
-rw-r--r-- | modules/translation/translation.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/translation/translation.test b/modules/translation/translation.test index c1fd79b77..22b08faf1 100644 --- a/modules/translation/translation.test +++ b/modules/translation/translation.test @@ -92,13 +92,13 @@ class TranslationTestCase extends DrupalWebTestCase { */ function addLanguage($language_code) { // Check to make sure that language has not already been installed. - $this->drupalGet('admin/settings/language'); + $this->drupalGet('admin/international/language'); if (strpos($this->drupalGetContent(), 'enabled[' . $language_code . ']') === FALSE) { // Doesn't have language installed so add it. $edit = array(); $edit['langcode'] = $language_code; - $this->drupalPost('admin/settings/language/add', $edit, t('Add language')); + $this->drupalPost('admin/international/language/add', $edit, t('Add language')); $languages = language_list('language', TRUE); // Make sure we're not using a stale list. $this->assertTrue(array_key_exists($language_code, $languages), t('Language was installed successfully.')); |