浏览代码

Fix formatting.

tags/v0.9.9
lain 5 年前
父节点
当前提交
2fedd93931
共有 1 个文件被更改,包括 8 次插入4 次删除
  1. +8
    -4
      test/web/mastodon_api/status_view_test.exs

+ 8
- 4
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"])



正在加载...
取消
保存