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 5bbeced22..e3a218ec4 100644 --- a/modules/translation/translation.test +++ b/modules/translation/translation.test @@ -31,10 +31,10 @@ class TranslationTestCase extends DrupalWebTestCase { $this->addLanguage('es'); // Set page content type to use multilingual support with translation. - $this->drupalGet('admin/build/node-type/page'); + $this->drupalGet('admin/structure/node-type/page'); $edit = array(); $edit['language_content_type'] = 2; - $this->drupalPost('admin/build/node-type/page', $edit, t('Save content type')); + $this->drupalPost('admin/structure/node-type/page', $edit, t('Save content type')); $this->assertRaw(t('The content type %type has been updated.', array('%type' => 'Page')), t('Page content type has been updated.')); $this->drupalLogout(); |