Skip to content

Commit

Permalink
[Security][Http][Authentication] Make a test pass on HHVM
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphaStream authored and fabpot committed Oct 1, 2014
1 parent 6e534f2 commit 7ff903e
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -37,7 +37,8 @@ public function setUp()

$this->request = $this->getMock('Symfony\Component\HttpFoundation\Request');
$this->token = $this->getMock('Symfony\Component\Security\Core\Authentication\Token\TokenInterface');
$this->authenticationException = $this->getMock('Symfony\Component\Security\Core\Exception\AuthenticationException');
// No methods are invoked on the exception; we just assert on its class
$this->authenticationException = new \Symfony\Component\Security\Core\Exception\AuthenticationException();

$this->response = $this->getMock('Symfony\Component\HttpFoundation\Response');
}
Expand Down

0 comments on commit 7ff903e

Please sign in to comment.