diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-05-22 20:02:52 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-05-22 20:02:52 +0000 |
commit | d9546f6d04b7c782db62f8b3cb2586ee7c2acc7e (patch) | |
tree | 865c3306b8db31196b57071e51694b06d85882b2 | |
parent | 3bbd9a7fa42e777a069b73e6d46052f7e87e8498 (diff) | |
download | brdo-d9546f6d04b7c782db62f8b3cb2586ee7c2acc7e.tar.gz brdo-d9546f6d04b7c782db62f8b3cb2586ee7c2acc7e.tar.bz2 |
- Patch #260499 by catch: fixed problem with translation tests.
-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 5152ea77d..3dcd5b20a 100644 --- a/modules/translation/translation.test +++ b/modules/translation/translation.test @@ -37,8 +37,8 @@ class TranslationTestCase extends DrupalWebTestCase { $this->addLanguage('es'); // Set page content type to use multilingual support with translation. - $this->drupalGet('admin/content/node-type/page'); - $this->drupalPost('admin/content/node-type/page', array('language_content_type' => '2'), t('Save content type')); + $this->drupalGet('admin/build/node-type/page'); + $this->drupalPost('admin/build/node-type/page', array('language_content_type' => '2'), 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(); |