aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-03-13 12:54:06 -0500
committerMark Felder <feld@FreeBSD.org>2020-03-13 12:54:06 -0500
commitc6eb1c1b929b85d14bf4ba29616c5b4bad732001 (patch)
treed85c7139f195853bcd8254e44e5cc741294e824a /test
parent7321429a2ea134d7d920d8c977c4ec7bdcafc5e1 (diff)
parent096c5c52e0eda931e3a9c46b61292dde55e19c91 (diff)
downloadpleroma-c6eb1c1b929b85d14bf4ba29616c5b4bad732001.tar.gz
Merge branch 'develop' into fix/cache-control-headers
Diffstat (limited to 'test')
-rw-r--r--test/plugs/cache_control_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/plugs/cache_control_test.exs b/test/plugs/cache_control_test.exs
index 005912ffb..6b567e81d 100644
--- a/test/plugs/cache_control_test.exs
+++ b/test/plugs/cache_control_test.exs
@@ -9,7 +9,7 @@ defmodule Pleroma.Web.CacheControlTest do
test "Verify Cache-Control header on static assets", %{conn: conn} do
conn = get(conn, "/index.html")
- assert Conn.get_resp_header(conn, "cache-control") == ["public max-age=86400 must-revalidate"]
+ assert Conn.get_resp_header(conn, "cache-control") == ["public, no-cache"]
end
test "Verify Cache-Control header on the API", %{conn: conn} do