summaryrefslogtreecommitdiff
path: root/test/web/activity_pub/activity_pub_controller_test.exs
diff options
context:
space:
mode:
authorHaelwenn (lanodan) Monnier <contact@hacktivis.me>2019-02-10 22:57:38 +0100
committerHaelwenn (lanodan) Monnier <contact@hacktivis.me>2019-02-11 03:44:15 +0100
commit8bb7e19b3814e261e66c2d3592d146f72d4ce623 (patch)
tree9a90b05698d7424cc8ad710fd2536a3c62450864 /test/web/activity_pub/activity_pub_controller_test.exs
parent89b6f255b4f3732182bd7b167c95fa87ccc31d33 (diff)
downloadpleroma-8bb7e19b3814e261e66c2d3592d146f72d4ce623.tar.gz
pleroma-8bb7e19b3814e261e66c2d3592d146f72d4ce623.zip
test: de-group alias/es
Diffstat (limited to 'test/web/activity_pub/activity_pub_controller_test.exs')
-rw-r--r--test/web/activity_pub/activity_pub_controller_test.exs9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/web/activity_pub/activity_pub_controller_test.exs b/test/web/activity_pub/activity_pub_controller_test.exs
index 570bee6b3..acd295988 100644
--- a/test/web/activity_pub/activity_pub_controller_test.exs
+++ b/test/web/activity_pub/activity_pub_controller_test.exs
@@ -5,8 +5,13 @@
defmodule Pleroma.Web.ActivityPub.ActivityPubControllerTest do
use Pleroma.Web.ConnCase
import Pleroma.Factory
- alias Pleroma.Web.ActivityPub.{UserView, ObjectView}
- alias Pleroma.{Object, Repo, Activity, User, Instances}
+ alias Pleroma.Web.ActivityPub.UserView
+ alias Pleroma.Web.ActivityPub.ObjectView
+ alias Pleroma.Object
+ alias Pleroma.Repo
+ alias Pleroma.Activity
+ alias Pleroma.User
+ alias Pleroma.Instances
setup_all do
Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)