Merge branch 'bugfix/activitypub-reserialization' into 'develop'
[akkoma] / test / web / mastodon_api / account_view_test.exs
index d6c9f58c890dcf8135ce2825cc908da480b18c01..f8cd68173b2d6ad0384d346b676ae96a896b2c9c 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
   use Pleroma.DataCase
   import Pleroma.Factory
@@ -55,7 +59,12 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
         privacy: "public",
         sensitive: false
       },
-      tags: []
+      pleroma: %{
+        confirmation_pending: false,
+        tags: [],
+        is_admin: false,
+        is_moderator: false
+      }
     }
 
     assert expected == AccountView.render("account.json", %{user: user})
@@ -93,7 +102,12 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
         privacy: "public",
         sensitive: false
       },
-      tags: []
+      pleroma: %{
+        confirmation_pending: false,
+        tags: [],
+        is_admin: false,
+        is_moderator: false
+      }
     }
 
     assert expected == AccountView.render("account.json", %{user: user})