Linting
authorrinpatch <rinpatch@sdf.org>
Thu, 26 Sep 2019 06:03:20 +0000 (09:03 +0300)
committerrinpatch <rinpatch@sdf.org>
Thu, 26 Sep 2019 06:03:20 +0000 (09:03 +0300)
test/web/activity_pub/views/user_view_test.exs

index b698b3396392a29a26796340526549e02e7a552d..dbb44a8a29139d06920c7571cc778c41629543ba 100644 (file)
@@ -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