Fix warnings in object tests
authorrinpatch <rinpatch@sdf.org>
Wed, 17 Apr 2019 09:27:29 +0000 (12:27 +0300)
committerrinpatch <rinpatch@sdf.org>
Wed, 17 Apr 2019 09:27:29 +0000 (12:27 +0300)
test/object/containment_test.exs
test/object/fetcher_test.exs

index 268675c86b34b0d6a185c11f9076c3eeec68d9f1..cb74c9f4fa3d5b83dab99f7eac1e6c120157d12e 100644 (file)
@@ -3,7 +3,6 @@ defmodule Pleroma.Object.ContainmentTest do
 
   alias Pleroma.User
   alias Pleroma.Object.Containment
-  alias Pleroma.Web.ActivityPub.ActivityPub
 
   import Pleroma.Factory
 
@@ -45,7 +44,7 @@ defmodule Pleroma.Object.ContainmentTest do
     end
 
     test "users cannot be collided through fake direction spoofing attempts" do
-      user =
+      _user =
         insert(:user, %{
           nickname: "rye@niu.moe",
           local: false,
index 3bbade9d13104230c1d9f0c3cccb37131ea30ff7..568c5cc4c845d8955938d91f80548929105e9304 100644 (file)
@@ -1,11 +1,10 @@
 defmodule Pleroma.Object.FetcherTest do
   use Pleroma.DataCase
 
-  alias Pleroma.{Activity, Object}
+  alias Pleroma.Activity
+  alias Pleroma.Object
   alias Pleroma.Object.Fetcher
 
-  import Pleroma.Factory
-
   describe "actor origin containment" do
     test "it rejects objects with a bogus origin" do
       {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity.json")