Fix order of args for unblock/2

This commit is contained in:
Mark Felder 2024-07-22 18:44:32 -04:00
commit 082319ff48
3 changed files with 3 additions and 3 deletions

View file

@ -324,7 +324,7 @@ defmodule Pleroma.Web.CommonAPITest do
User.block(blocker, blocked)
assert User.blocks?(blocker, blocked)
assert {:ok, :no_activity} == CommonAPI.unblock(blocker, blocked)
assert {:ok, :no_activity} == CommonAPI.unblock(blocked, blocker)
refute User.blocks?(blocker, blocked)
end
end