diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-11-23 21:17:48 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-11-23 21:17:48 +0000 |
commit | 251a761eaa58b6f5e1eac7ff02a5d879e22eaa77 (patch) | |
tree | ccf1ccd340b33e910046a50343f6b8ca0b098e50 /modules/poll | |
parent | 079a1bd2a5cf2d5429e64ed466dd51650b4ef5ba (diff) | |
download | brdo-251a761eaa58b6f5e1eac7ff02a5d879e22eaa77.tar.gz brdo-251a761eaa58b6f5e1eac7ff02a5d879e22eaa77.tar.bz2 |
#337820 by Dave Reid: Rename menu path 'logout' to 'user/logout' for consistency.
Diffstat (limited to 'modules/poll')
-rw-r--r-- | modules/poll/poll.test | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/poll/poll.test b/modules/poll/poll.test index 6c190a4e3..782a4640b 100644 --- a/modules/poll/poll.test +++ b/modules/poll/poll.test @@ -113,7 +113,7 @@ class PollVoteTestCase extends PollTestCase { $title = $this->randomName(); $choices = $this->_generateChoices(7); $poll_nid = $this->pollCreate($title, $choices, FALSE); - $this->drupalGet('logout'); + $this->drupalLogout(); $web_user = $this->drupalCreateUser(array('cancel own vote', 'inspect all votes', 'vote on polls', 'access content')); $this->drupalLogin($web_user); @@ -130,4 +130,3 @@ class PollVoteTestCase extends PollTestCase { $this->assertText($choices[0], 'Vote recorded'); } } - |