Merge branch 'feature/update-description' into 'develop'
[akkoma] / test / plugs / instance_static_test.exs
index 2e9d2dc466d00fb77f4ad7d2b187549501bee796..be2613ad098ce0907345679811639017a7a91b30 100644 (file)
@@ -12,11 +12,11 @@ defmodule Pleroma.Web.RuntimeStaticPlugTest do
     on_exit(fn -> File.rm_rf(@dir) end)
   end
 
-  clear_config([:instance, :static_dir], @dir)
+  setup do: clear_config([:instance, :static_dir], @dir)
 
   test "overrides index" do
     bundled_index = get(build_conn(), "/")
-    assert html_response(bundled_index, 200) == File.read!("priv/static/index.html")
+    refute html_response(bundled_index, 200) == "hello world"
 
     File.write!(@dir <> "/index.html", "hello world")