Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jun 15, 2011
1 parent 1467a9b commit 9d54633
Showing 1 changed file with 0 additions and 9 deletions.
Expand Up @@ -31,9 +31,6 @@ protected function setUp()

public function testGenerateCsrfToken()
{
$this->session->expects($this->once())
->method('start');

$this->session->expects($this->once())
->method('getId')
->will($this->returnValue('ABCDEF'));
Expand All @@ -45,9 +42,6 @@ public function testGenerateCsrfToken()

public function testIsCsrfTokenValidSucceeds()
{
$this->session->expects($this->once())
->method('start');

$this->session->expects($this->once())
->method('getId')
->will($this->returnValue('ABCDEF'));
Expand All @@ -59,9 +53,6 @@ public function testIsCsrfTokenValidSucceeds()

public function testIsCsrfTokenValidFails()
{
$this->session->expects($this->once())
->method('start');

$this->session->expects($this->once())
->method('getId')
->will($this->returnValue('ABCDEF'));
Expand Down

0 comments on commit 9d54633

Please sign in to comment.