mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-18 02:49:18 +00:00
Remove unnecesary queries
This commit is contained in:
parent
f6e632d25b
commit
369be708b2
|
@ -118,9 +118,6 @@ test "Follow another user using user_id" do
|
|||
|
||||
{:ok, user, following, activity } = TwitterAPI.follow(user, %{"user_id" => following.id})
|
||||
|
||||
user = Repo.get(User, user.id)
|
||||
follow = Repo.get(Activity, activity.id)
|
||||
|
||||
assert user.following == [User.ap_followers(following)]
|
||||
end
|
||||
|
||||
|
@ -130,9 +127,6 @@ test "Follow another user using screen_name" do
|
|||
|
||||
{:ok, user, following, activity } = TwitterAPI.follow(user, %{"screen_name" => following.nickname})
|
||||
|
||||
user = Repo.get(User, user.id)
|
||||
follow = Repo.get(Activity, activity.id)
|
||||
|
||||
assert user.following == [User.ap_followers(following)]
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue