From: Mark Felder Date: Fri, 13 Mar 2020 17:20:33 +0000 (-0500) Subject: Fix test to use new cache-control settings X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=470090471dabdd3863b9082f1c7aba6c84e7e703;p=akkoma Fix test to use new cache-control settings --- diff --git a/test/reverse_proxy_test.exs b/test/reverse_proxy_test.exs index 18d70862c..f1690ade9 100644 --- a/test/reverse_proxy_test.exs +++ b/test/reverse_proxy_test.exs @@ -294,7 +294,7 @@ defmodule Pleroma.ReverseProxyTest do |> expect(:stream_body, fn _ -> :done end) conn = ReverseProxy.call(conn, "/cache") - assert {"cache-control", "public"} in conn.resp_headers + assert {"cache-control", "public, max-age=1209600"} in conn.resp_headers end end