From: Roeland Jago Douma Date: Sun, 21 Jun 2020 07:44:56 +0000 (+0200) Subject: Fix unit test of the ResponseTest X-Git-Tag: v20.0.0beta1~385^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F21510%2Fhead;p=nextcloud-server.git Fix unit test of the ResponseTest Signed-off-by: Roeland Jago Douma --- diff --git a/tests/lib/AppFramework/Http/ResponseTest.php b/tests/lib/AppFramework/Http/ResponseTest.php index f33d0a0089d..435dde7d345 100644 --- a/tests/lib/AppFramework/Http/ResponseTest.php +++ b/tests/lib/AppFramework/Http/ResponseTest.php @@ -229,15 +229,15 @@ class ResponseTest extends \Test\TestCase { public function testCacheSeconds() { $time = $this->createMock(ITimeFactory::class); $time->method('getTime') - ->willReturn('1234567'); + ->willReturn(1234567); $this->overwriteService(ITimeFactory::class, $time); $this->childResponse->cacheFor(33); $headers = $this->childResponse->getHeaders(); - $this->assertEquals('max-age=33, must-revalidate', $headers['Cache-Control']); - $this->assertEquals('public', $headers['Pragma']); + $this->assertEquals('private, max-age=33, must-revalidate', $headers['Cache-Control']); + $this->assertEquals('private', $headers['Pragma']); $this->assertEquals('Thu, 15 Jan 1970 06:56:40 +0000', $headers['Expires']); }