forked from AkkomaGang/akkoma
Fix formatting.
This commit is contained in:
parent
81af7fd02d
commit
2fedd93931
1 changed files with 8 additions and 4 deletions
|
@ -9,10 +9,14 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
|
||||||
|
|
||||||
test "a note with null content" do
|
test "a note with null content" do
|
||||||
note = insert(:note_activity)
|
note = insert(:note_activity)
|
||||||
data = note.data
|
|
||||||
|> put_in(["object", "content"], nil)
|
data =
|
||||||
note = note
|
note.data
|
||||||
|> Map.put(:data, data)
|
|> put_in(["object", "content"], nil)
|
||||||
|
|
||||||
|
note =
|
||||||
|
note
|
||||||
|
|> Map.put(:data, data)
|
||||||
|
|
||||||
user = User.get_cached_by_ap_id(note.data["actor"])
|
user = User.get_cached_by_ap_id(note.data["actor"])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue