adapt to new user factory behavior
authorstwf <steven.fuchs@dockyard.com>
Thu, 17 Sep 2020 16:32:40 +0000 (12:32 -0400)
committerstwf <steven.fuchs@dockyard.com>
Thu, 17 Sep 2020 16:32:40 +0000 (12:32 -0400)
test/web/metadata/metadata_test.exs

index 054844597b4dc53e7d8d71ceaf9c4c09886beb5c..ca6cbe67faa875c7cf69da661884d4808cdd90b4 100644 (file)
@@ -16,7 +16,7 @@ defmodule Pleroma.Web.MetadataTest do
     end
 
     test "for local user" do
-      user = insert(:user)
+      user = insert(:user, discoverable: false)
 
       assert Pleroma.Web.Metadata.build_tags(%{user: user}) =~
                "<meta content=\"noindex, noarchive\" name=\"robots\">"
@@ -40,7 +40,7 @@ defmodule Pleroma.Web.MetadataTest do
 
     test "search exclusion metadata is included" do
       clear_config([:instance, :public], false)
-      user = insert(:user, bio: "This is my secret fedi account bio")
+      user = insert(:user, bio: "This is my secret fedi account bio", discoverable: false)
 
       assert ~s(<meta content="noindex, noarchive" name="robots">) ==
                Pleroma.Web.Metadata.build_tags(%{user: user})