summaryrefslogtreecommitdiff
path: root/test/activity_test.exs
diff options
context:
space:
mode:
Diffstat (limited to 'test/activity_test.exs')
-rw-r--r--test/activity_test.exs4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/activity_test.exs b/test/activity_test.exs
index 366a2f957..55849c522 100644
--- a/test/activity_test.exs
+++ b/test/activity_test.exs
@@ -18,7 +18,9 @@ defmodule Pleroma.ActivityTest do
test "returns the activity that created an object" do
activity = insert(:note_activity)
- found_activity = Pleroma.Activity.get_create_activity_by_object_ap_id(activity.data["object"]["id"])
+
+ found_activity =
+ Pleroma.Activity.get_create_activity_by_object_ap_id(activity.data["object"]["id"])
assert activity == found_activity
end