fix unit test

This commit is contained in:
v1r0x 2016-02-18 12:39:19 +01:00
parent 534071f4b2
commit ec6e8c1ab6
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class RedirectResponseTest extends \Test\TestCase {
public function testHeaders() {
$headers = $this->response->getHeaders();
$this->assertEquals('/url', $headers['Location']);
$this->assertEquals(Http::STATUS_TEMPORARY_REDIRECT,
$this->assertEquals(Http::STATUS_SEE_OTHER,
$this->response->getStatus());
}