MastodonAPITest: Do the needful

This commit is contained in:
lain 2020-08-04 15:08:51 +02:00
parent 1a00713744
commit 36aa34a1a8
1 changed files with 1 additions and 2 deletions

View File

@ -17,8 +17,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPITest do
test "returns error when followed user is deactivated" do
follower = insert(:user)
user = insert(:user, local: true, deactivated: true)
{:error, error} = MastodonAPI.follow(follower, user)
assert error == :rejected
assert {:error, _error} = MastodonAPI.follow(follower, user)
end
test "following for user" do