diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-05-13 08:27:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 08:27:05 +0200 |
commit | 4fbea316a7eab0104f088a53edd61a70615e355e (patch) | |
tree | d008cdd8bb21783958e45671882f5c87686be496 /tests | |
parent | ab2df70e3ac0d8216c1986cc64aff83c215f1add (diff) | |
parent | 979dd1b6f5d4bd82120a821c8f6b8e7773921b15 (diff) | |
download | nextcloud-server-4fbea316a7eab0104f088a53edd61a70615e355e.tar.gz nextcloud-server-4fbea316a7eab0104f088a53edd61a70615e355e.zip |
Merge pull request #20897 from nextcloud/bugfix/httpcache
Proxy server could cache http response when it is not private
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/AppFramework/Http/ResponseTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/AppFramework/Http/ResponseTest.php b/tests/lib/AppFramework/Http/ResponseTest.php index e6f88b6a6e9..f33d0a0089d 100644 --- a/tests/lib/AppFramework/Http/ResponseTest.php +++ b/tests/lib/AppFramework/Http/ResponseTest.php @@ -267,7 +267,7 @@ class ResponseTest extends \Test\TestCase { $this->assertEquals(Http::STATUS_NOT_FOUND, $this->childResponse->getStatus()); $this->assertEquals('hi', $this->childResponse->getEtag()); $this->assertEquals('Thu, 01 Jan 1970 00:00:01 +0000', $headers['Last-Modified']); - $this->assertEquals('max-age=33, must-revalidate', + $this->assertEquals('private, max-age=33, must-revalidate', $headers['Cache-Control']); } |