diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-11-24 04:22:02 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-11-24 04:22:02 +0000 |
commit | bd9554952c02b4ea70103a87d3b7ef51af29f9d4 (patch) | |
tree | 213e7f7231daba3286499a8d6061f11e01a894b4 /modules/locale | |
parent | 3d1dcb496641993d2da76b70e2ffc02af41aec34 (diff) | |
download | brdo-bd9554952c02b4ea70103a87d3b7ef51af29f9d4.tar.gz brdo-bd9554952c02b4ea70103a87d3b7ef51af29f9d4.tar.bz2 |
Reverting #337820 which causes menu tests to fail, unbeknownst to testing bot. Hrm...
Diffstat (limited to 'modules/locale')
-rw-r--r-- | modules/locale/locale.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/locale/locale.test b/modules/locale/locale.test index 81ec48f8c..3daf79f5e 100644 --- a/modules/locale/locale.test +++ b/modules/locale/locale.test @@ -58,7 +58,7 @@ class LocaleTestCase extends DrupalWebTestCase { // No t() here, we do not want to add this string to the database and it's // surely not translated yet. $this->assertText($native, 'Test language added'); - $this->drupalLogout(); + $this->drupalGet('logout'); // Search for the name and translate it. $this->drupalLogin($translate_user); @@ -90,7 +90,7 @@ class LocaleTestCase extends DrupalWebTestCase { $this->drupalPost('admin/build/translate/search', $search, t('Search')); // The indicator should not be here. $this->assertNoRaw($language_indicator, 'String is translated'); - $this->drupalLogout(); + $this->drupalGet('logout'); // Delete the language. $this->drupalLogin($admin_user); @@ -104,7 +104,7 @@ class LocaleTestCase extends DrupalWebTestCase { $this->assertNoText($langcode, 'Language code not found'); $this->assertNoText($name, 'Name not found'); $this->assertNoText($native, 'Native not found'); - $this->drupalLogout(); + $this->drupalGet('logout'); // Delete the name string. $this->drupalLogin($translate_user); |