Fix tests in HHVM

This commit is contained in:
Diego Saint Esteben 2015-05-11 23:26:17 -03:00
parent 5c996c4e9b
commit 139bae7047
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class DefaultAuthenticationFailureHandlerTest extends \PHPUnit_Framework_TestCas
$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()