aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2018-11-03 16:40:57 +0100
committerlain <lain@soykaf.club>2018-11-03 16:40:57 +0100
commit2fedd93931ad3430daa9a311cb0905dac71ee01d (patch)
tree4057058e26eaa4533125b7a3bcfb35d5f6d5cd38 /test
parent81af7fd02d2ca0430e0470b78ad2384e5598fbe1 (diff)
downloadpleroma-2fedd93931ad3430daa9a311cb0905dac71ee01d.tar.gz
Fix formatting.
Diffstat (limited to 'test')
-rw-r--r--test/web/mastodon_api/status_view_test.exs12
1 files changed, 8 insertions, 4 deletions
diff --git a/test/web/mastodon_api/status_view_test.exs b/test/web/mastodon_api/status_view_test.exs
index b29f13e20..31554a07d 100644
--- a/test/web/mastodon_api/status_view_test.exs
+++ b/test/web/mastodon_api/status_view_test.exs
@@ -9,10 +9,14 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
test "a note with null content" do
note = insert(:note_activity)
- data = note.data
- |> put_in(["object", "content"], nil)
- note = note
- |> Map.put(:data, data)
+
+ data =
+ note.data
+ |> put_in(["object", "content"], nil)
+
+ note =
+ note
+ |> Map.put(:data, data)
user = User.get_cached_by_ap_id(note.data["actor"])