aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-09-26 09:03:20 +0300
committerrinpatch <rinpatch@sdf.org>2019-09-26 09:03:20 +0300
commit6d1ca73466bddb40684a2b3f545da6676ed71add (patch)
treebfbc37f3692d16288b8f34867efbc85cb930f58c
parent4c6e5639d36c6775fbdffee0a4c696633f6740f7 (diff)
downloadpleroma-6d1ca73466bddb40684a2b3f545da6676ed71add.tar.gz
Linting
-rw-r--r--test/web/activity_pub/views/user_view_test.exs48
1 files changed, 24 insertions, 24 deletions
diff --git a/test/web/activity_pub/views/user_view_test.exs b/test/web/activity_pub/views/user_view_test.exs
index b698b3396..dbb44a8a2 100644
--- a/test/web/activity_pub/views/user_view_test.exs
+++ b/test/web/activity_pub/views/user_view_test.exs
@@ -122,35 +122,35 @@ defmodule Pleroma.Web.ActivityPub.UserViewTest do
assert %{"totalItems" => 0} = UserView.render("following.json", %{user: user})
end
- test "activity collection page aginates correctly" do
- user = insert(:user)
+ test "activity collection page aginates correctly" do
+ user = insert(:user)
- posts =
- for i <- 0..25 do
- {:ok, activity} = CommonAPI.post(user, %{"status" => "post #{i}"})
- activity
- end
+ posts =
+ for i <- 0..25 do
+ {:ok, activity} = CommonAPI.post(user, %{"status" => "post #{i}"})
+ activity
+ end
- # outbox sorts chronologically, newest first, with ten per page
- posts = Enum.reverse(posts)
+ # outbox sorts chronologically, newest first, with ten per page
+ posts = Enum.reverse(posts)
- %{"next" => next_url} =
- UserView.render("activity_collection_page.json", %{
- iri: "#{user.ap_id}/outbox",
- activities: Enum.take(posts, 10)
- })
+ %{"next" => next_url} =
+ UserView.render("activity_collection_page.json", %{
+ iri: "#{user.ap_id}/outbox",
+ activities: Enum.take(posts, 10)
+ })
- next_id = Enum.at(posts, 9).id
- assert next_url =~ next_id
+ next_id = Enum.at(posts, 9).id
+ assert next_url =~ next_id
- %{"next" => next_url} =
- UserView.render("activity_collection_page.json", %{
- iri: "#{user.ap_id}/outbox",
- activities: Enum.take(Enum.drop(posts, 10), 10)
- })
+ %{"next" => next_url} =
+ UserView.render("activity_collection_page.json", %{
+ iri: "#{user.ap_id}/outbox",
+ activities: Enum.take(Enum.drop(posts, 10), 10)
+ })
- next_id = Enum.at(posts, 19).id
- assert next_url =~ next_id
- end
+ next_id = Enum.at(posts, 19).id
+ assert next_url =~ next_id
+ end
end
end