summaryrefslogtreecommitdiff
path: root/modules/translation/translation.test
diff options
context:
space:
mode:
Diffstat (limited to 'modules/translation/translation.test')
-rw-r--r--modules/translation/translation.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/translation/translation.test b/modules/translation/translation.test
index e3a218ec4..fa8c6ab68 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/international/language');
+ $this->drupalGet('admin/config/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/international/language/add', $edit, t('Add language'));
+ $this->drupalPost('admin/config/international/language/add', $edit, t('Add language'));
// Make sure we're not using a stale list.
drupal_static_reset('language_list');