MINOR Fixed failing test as session being set before logging out and losing BackURL

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@108518 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sean Harvey 2010-07-26 06:55:33 +00:00 committed by Sam Minnee
parent 72e1120168
commit ddcb7b6b89

View File

@ -328,9 +328,8 @@ class SecurityTest extends FunctionalTest {
* Helper method for the tests above
*/
function doTestLoginForm($email, $password, $backURL = 'test/link') {
$this->session()->inst_set('BackURL', $backURL);
$this->get('Security/logout');
$this->session()->inst_set('BackURL', $backURL);
$this->get('Security/login');
return $this->submitForm(
@ -342,7 +341,7 @@ class SecurityTest extends FunctionalTest {
'AuthenticationMethod' => 'MemberAuthenticator',
'action_dologin' => 1,
)
);
);
}
/**