From b7f21302bc55ff60da89be62db16431e300b5dd1 Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Tue, 19 Oct 2010 00:47:19 +0000 Subject: [PATCH] MINOR Fixed failing test as session being set before logging out and losing BackURL (from r108518) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112759 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- tests/security/SecurityTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/security/SecurityTest.php b/tests/security/SecurityTest.php index 6e1b058ea..e81ced568 100644 --- a/tests/security/SecurityTest.php +++ b/tests/security/SecurityTest.php @@ -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, ) - ); + ); } /**