summaryrefslogtreecommitdiffstats
path: root/tests/lib/appframework
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-06-15 18:35:41 +0200
committerLukas Reschke <lukas@owncloud.com>2015-06-15 18:35:41 +0200
commit34f5541088e99367a8bcdc1ca2ba4fa8524eec68 (patch)
tree2bce13a37e15f7a52415830149b198b001adec52 /tests/lib/appframework
parent15ba2a41002d0fb72a5a6ee7f3cb129b03acc4e5 (diff)
downloadnextcloud-server-34f5541088e99367a8bcdc1ca2ba4fa8524eec68.tar.gz
nextcloud-server-34f5541088e99367a8bcdc1ca2ba4fa8524eec68.zip
Add `no-store` to AppFramework
Diffstat (limited to 'tests/lib/appframework')
-rw-r--r--tests/lib/appframework/http/ResponseTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/appframework/http/ResponseTest.php b/tests/lib/appframework/http/ResponseTest.php
index 77e9441b52c..c8b79fbd8b6 100644
--- a/tests/lib/appframework/http/ResponseTest.php
+++ b/tests/lib/appframework/http/ResponseTest.php
@@ -221,7 +221,7 @@ class ResponseTest extends \Test\TestCase {
$this->childResponse->cacheFor(0);
$headers = $this->childResponse->getHeaders();
- $this->assertEquals('no-cache, must-revalidate', $headers['Cache-Control']);
+ $this->assertEquals('no-cache, no-store, must-revalidate', $headers['Cache-Control']);
}