Skip to content
Snippets Groups Projects
Commit 8a41d346 authored by Ivan Tashkinov's avatar Ivan Tashkinov
Browse files

[#878] Tests improvements per code review.

parent 6fc0c27b
No related branches found
No related tags found
No related merge requests found
Pipeline #14433 passed
......@@ -679,8 +679,14 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do
assert object.data["likes"] == [user.ap_id]
assert object.data["like_count"] == 1
[note_activity] = Activity.get_all_create_by_object_ap_id(object.data["id"])
assert note_activity.data["object"]["like_count"] == 1
{:ok, _like_activity, object} = ActivityPub.like(user_two, object)
assert object.data["like_count"] == 2
[note_activity] = Activity.get_all_create_by_object_ap_id(object.data["id"])
assert note_activity.data["object"]["like_count"] == 2
end
end
......
......@@ -20,7 +20,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectViewTest do
test "renders a note activity" do
note = insert(:note_activity)
object = Pleroma.Object.normalize(note)
object = Object.normalize(note)
result = ObjectView.render("object.json", %{object: note})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment