diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-11-29 09:33:51 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-11-29 09:33:51 +0000 |
commit | bc719d0c550fe0f6120676481d3ed5e039db4790 (patch) | |
tree | c83b9975f827560038c153868348bacc8699d3d4 /modules/locale | |
parent | 205c5b2415deb10d4afba32249e7f5f989a097b1 (diff) | |
download | brdo-bc719d0c550fe0f6120676481d3ed5e039db4790.tar.gz brdo-bc719d0c550fe0f6120676481d3ed5e039db4790.tar.bz2 |
- Patch #337820 by Dave Reid, Damien Tournoud, et al: rename menu path 'logout' to 'user/logout'. For real now.
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 45a014755..26904e824 100644 --- a/modules/locale/locale.test +++ b/modules/locale/locale.test @@ -55,7 +55,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->drupalGet('logout'); + $this->drupalLogout(); // Search for the name and translate it. $this->drupalLogin($translate_user); @@ -87,7 +87,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->drupalGet('logout'); + $this->drupalLogout(); // Delete the language. $this->drupalLogin($admin_user); @@ -101,7 +101,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->drupalGet('logout'); + $this->drupalLogout(); // Delete the name string. $this->drupalLogin($translate_user); |