Merge branch 'develop' into oembed_provider
[akkoma] / test / web / ostatus / ostatus_controller_test.exs
index 747e3015401a24bae1a18ce8a3b83652af8081c2..e9e9bdb169b12064fe4727be67775ba9271d3305 100644 (file)
@@ -136,17 +136,15 @@ defmodule Pleroma.Web.OStatus.OStatusControllerTest do
     |> response(404)
   end
 
-  test "renders notice metatags in html format" do
+  test "renders notice metatags in html format", %{conn: conn} do
     note_activity = insert(:note_activity)
-
     conn = get(conn, "/notice/#{note_activity.id}")
-
+    body = html_response(conn, 200)
     twitter_card_summary = "<meta content=\"summary\" property=\"twitter:card\">"
 
     description_content =
       "<meta content=\"#{note_activity.data["object"]["content"]}\" property=\"og:description\">"
 
-    body = html_response(conn, 200)
     assert body =~ twitter_card_summary
     assert body =~ description_content
   end