From ec6e8c1ab666eb94798ff88da9a8d8ed5e311635 Mon Sep 17 00:00:00 2001 From: v1r0x <vinzenz.rosenkranz@gmail.com> Date: Thu, 18 Feb 2016 12:39:19 +0100 Subject: [PATCH] fix unit test --- tests/lib/appframework/http/RedirectResponseTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/appframework/http/RedirectResponseTest.php b/tests/lib/appframework/http/RedirectResponseTest.php index 17db0c0be6c..723f6600c55 100644 --- a/tests/lib/appframework/http/RedirectResponseTest.php +++ b/tests/lib/appframework/http/RedirectResponseTest.php @@ -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()); } -- GitLab