Skip to content

Commit

Permalink
Fix tests in HHVM
Browse files Browse the repository at this point in the history
  • Loading branch information
dosten committed May 12, 2015
1 parent 5c996c4 commit 139bae7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -38,7 +38,7 @@ protected function setUp()
$this->session = $this->getMock('Symfony\Component\HttpFoundation\Session\SessionInterface');
$this->request = $this->getMock('Symfony\Component\HttpFoundation\Request');
$this->request->expects($this->any())->method('getSession')->will($this->returnValue($this->session));
$this->exception = $this->getMock('Symfony\Component\Security\Core\Exception\AuthenticationException');
$this->exception = $this->getMock('Symfony\Component\Security\Core\Exception\AuthenticationException', array('getMessage'));
}

public function testForward()
Expand Down

0 comments on commit 139bae7

Please sign in to comment.