diff options
Diffstat (limited to 'test/web/mastodon_api')
| -rw-r--r-- | test/web/mastodon_api/account_view_test.exs | 2 | ||||
| -rw-r--r-- | test/web/mastodon_api/mastodon_api_controller_test.exs | 14 | ||||
| -rw-r--r-- | test/web/mastodon_api/status_view_test.exs | 8 | 
3 files changed, 12 insertions, 12 deletions
| diff --git a/test/web/mastodon_api/account_view_test.exs b/test/web/mastodon_api/account_view_test.exs index 6be66ef63..c2ffc21da 100644 --- a/test/web/mastodon_api/account_view_test.exs +++ b/test/web/mastodon_api/account_view_test.exs @@ -5,8 +5,8 @@  defmodule Pleroma.Web.MastodonAPI.AccountViewTest do    use Pleroma.DataCase    import Pleroma.Factory -  alias Pleroma.Web.MastodonAPI.AccountView    alias Pleroma.User +  alias Pleroma.Web.MastodonAPI.AccountView    test "Represent a user account" do      source_data = %{ diff --git a/test/web/mastodon_api/mastodon_api_controller_test.exs b/test/web/mastodon_api/mastodon_api_controller_test.exs index 2caf514bb..87b28e24e 100644 --- a/test/web/mastodon_api/mastodon_api_controller_test.exs +++ b/test/web/mastodon_api/mastodon_api_controller_test.exs @@ -5,17 +5,17 @@  defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do    use Pleroma.Web.ConnCase -  alias Pleroma.Web.TwitterAPI.TwitterAPI -  alias Pleroma.Repo -  alias Pleroma.User -  alias Pleroma.Object +  alias Ecto.Changeset    alias Pleroma.Activity    alias Pleroma.Notification -  alias Pleroma.Web.OStatus -  alias Pleroma.Web.CommonAPI +  alias Pleroma.Object +  alias Pleroma.Repo +  alias Pleroma.User    alias Pleroma.Web.ActivityPub.ActivityPub +  alias Pleroma.Web.CommonAPI    alias Pleroma.Web.MastodonAPI.FilterView -  alias Ecto.Changeset +  alias Pleroma.Web.OStatus +  alias Pleroma.Web.TwitterAPI.TwitterAPI    import Pleroma.Factory    import ExUnit.CaptureLog    import Tesla.Mock diff --git a/test/web/mastodon_api/status_view_test.exs b/test/web/mastodon_api/status_view_test.exs index 485a0b4f7..3eec2cb5b 100644 --- a/test/web/mastodon_api/status_view_test.exs +++ b/test/web/mastodon_api/status_view_test.exs @@ -5,13 +5,13 @@  defmodule Pleroma.Web.MastodonAPI.StatusViewTest do    use Pleroma.DataCase +  alias Pleroma.Activity +  alias Pleroma.User +  alias Pleroma.Web.ActivityPub.ActivityPub +  alias Pleroma.Web.CommonAPI    alias Pleroma.Web.MastodonAPI.AccountView    alias Pleroma.Web.MastodonAPI.StatusView -  alias Pleroma.User    alias Pleroma.Web.OStatus -  alias Pleroma.Web.CommonAPI -  alias Pleroma.Web.ActivityPub.ActivityPub -  alias Pleroma.Activity    import Pleroma.Factory    import Tesla.Mock | 
