diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/pleroma/web/activity_pub/object_validators/article_note_page_validator_test.exs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/pleroma/web/activity_pub/object_validators/article_note_page_validator_test.exs b/test/pleroma/web/activity_pub/object_validators/article_note_page_validator_test.exs index 38ea6f1d0..c7a62be18 100644 --- a/test/pleroma/web/activity_pub/object_validators/article_note_page_validator_test.exs +++ b/test/pleroma/web/activity_pub/object_validators/article_note_page_validator_test.exs @@ -116,17 +116,4 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidators.ArticleNotePageValidatorTest %{valid?: true} = ArticleNotePageValidator.cast_and_validate(note) end - - test "a Note without replies/first/items validates" do - insert(:user, ap_id: "https://mastodon.social/users/emelie") - - note = - "test/fixtures/tesla_mock/status.emelie.json" - |> File.read!() - |> Jason.decode!() - |> pop_in(["replies", "first", "items"]) - |> elem(1) - - %{valid?: true} = ArticleNotePageValidator.cast_and_validate(note) - end end |