diff options
author | tusooa <tusooa@kazv.moe> | 2022-11-11 18:32:08 -0500 |
---|---|---|
committer | tusooa <tusooa@kazv.moe> | 2022-11-11 18:32:08 -0500 |
commit | 7991364380f56f9892d99805bcae6ced7f180cff (patch) | |
tree | ea2926e2c864b4563a0221d84d595b971010ca7f | |
parent | 717c5901f893527b059201d1ce7899060a18a1a5 (diff) | |
download | pleroma-7991364380f56f9892d99805bcae6ced7f180cff.tar.gz pleroma-7991364380f56f9892d99805bcae6ced7f180cff.zip |
Lint
-rw-r--r-- | test/pleroma/web/common_api_test.exs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/pleroma/web/common_api_test.exs b/test/pleroma/web/common_api_test.exs index 8eb4e38e4..4dc0d9cbe 100644 --- a/test/pleroma/web/common_api_test.exs +++ b/test/pleroma/web/common_api_test.exs @@ -1175,7 +1175,9 @@ defmodule Pleroma.Web.CommonAPITest do assert reported_user == target_user.ap_id assert is_map(reported_activity) - assert reported_activity["content"] == report_data["object"] |> Enum.at(1) |> Map.get("content") + + assert reported_activity["content"] == + report_data["object"] |> Enum.at(1) |> Map.get("content") end test "does not update report state when state is unsupported" do |