Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit ffa3efd

Browse files
committed
Fix tests in HHVM
1 parent 4bc570e commit ffa3efd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Http/Authentication/DefaultAuthenticationFailureHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ protected function setUp()
3838
$this->session = $this->getMock('Symfony\Component\HttpFoundation\Session\SessionInterface');
3939
$this->request = $this->getMock('Symfony\Component\HttpFoundation\Request');
4040
$this->request->expects($this->any())->method('getSession')->will($this->returnValue($this->session));
41-
$this->exception = $this->getMock('Symfony\Component\Security\Core\Exception\AuthenticationException');
41+
$this->exception = $this->getMock('Symfony\Component\Security\Core\Exception\AuthenticationException', array('getMessage'));
4242
}
4343

4444
public function testForward()

0 commit comments

Comments
 (0)