소스 검색

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"])



불러오는 중...
취소
저장