diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-11-25 13:16:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-11-25 13:16:39 +0000 |
commit | c01f85bc37be9de6397d58f735c4f611f0f12256 (patch) | |
tree | 31886b18038b0280a43dd0a12c08b816454d1f0f /modules/simpletest/drupal_web_test_case.php | |
parent | eda100b83da4d71bf0bfa6c614e08327ef0d292b (diff) | |
download | brdo-c01f85bc37be9de6397d58f735c4f611f0f12256.tar.gz brdo-c01f85bc37be9de6397d58f735c4f611f0f12256.tar.bz2 |
- Patch #337820 by Dave Reid: rename menu path logout to user/logout.
Diffstat (limited to 'modules/simpletest/drupal_web_test_case.php')
-rw-r--r-- | modules/simpletest/drupal_web_test_case.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php index 10d95a546..4d43592d1 100644 --- a/modules/simpletest/drupal_web_test_case.php +++ b/modules/simpletest/drupal_web_test_case.php @@ -661,7 +661,7 @@ class DrupalWebTestCase { */ function drupalLogout() { // Make a request to the logout page. - $this->drupalGet('logout'); + $this->drupalGet('user/logout'); // Load the user page, the idea being if you were properly logged out you should be seeing a login screen. $this->drupalGet('user'); |