Tests: Capture log.

This commit is contained in:
lain 2019-10-18 12:44:53 +02:00
commit 15bbc34c07
2 changed files with 8 additions and 3 deletions

View file

@ -275,9 +275,10 @@ defmodule Pleroma.Web.CommonAPITest do
{:ok, activity} = CommonAPI.post(other_user, %{"status" => "cofe"})
{:ok, %Activity{}} = CommonAPI.favorite(user, activity.id)
assert capture_log(fn ->
assert {:error, _} = CommonAPI.favorite(user, activity.id)
end) =~ "[error]"
assert {:error, _} = CommonAPI.favorite(user, activity.id)
end) =~ "[error]"
end
end