diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-03-20 19:18:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-03-20 19:18:11 +0000 |
commit | 32076b4d32a3cfdd0476bd3488d5160dd46affac (patch) | |
tree | 2ea12412d23f5c077cf20f35a026b683504f3378 /modules/simpletest/tests/session.test | |
parent | c49a925eb8172805389f9d5f341e4acd9f5cd2d4 (diff) | |
download | brdo-32076b4d32a3cfdd0476bd3488d5160dd46affac.tar.gz brdo-32076b4d32a3cfdd0476bd3488d5160dd46affac.tar.bz2 |
- Patch #273137 by pwolanin, David_Rothstein, chx, et al: split navigation to user and administration menu. Will require follow-up patches.
Diffstat (limited to 'modules/simpletest/tests/session.test')
-rw-r--r-- | modules/simpletest/tests/session.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/tests/session.test b/modules/simpletest/tests/session.test index 6b26c71ca..63932e7e4 100644 --- a/modules/simpletest/tests/session.test +++ b/modules/simpletest/tests/session.test @@ -53,7 +53,7 @@ class SessionTestCase extends DrupalWebTestCase { 'pass' => $user->pass_raw ); $this->drupalPost('user', $edit, t('Log in')); - $this->drupalGet('node'); + $this->drupalGet('user'); $pass = $this->assertText($user->name, t('Found name: %name', array('%name' => $user->name)), t('User login')); $this->_logged_in = $pass; |