factory: Fix article_factory

This commit is contained in:
Haelwenn (lanodan) Monnier 2021-05-31 10:06:06 +02:00
parent 7c5e007b9c
commit 5c3a0dd26e
No known key found for this signature in database
GPG Key ID: D5B7A8E43C997DEE
1 changed files with 2 additions and 2 deletions

View File

@ -191,8 +191,8 @@ defmodule Pleroma.Factory do
end
def article_factory do
note_factory()
|> Map.put("type", "Article")
%Pleroma.Object{data: data} = note_factory()
%Pleroma.Object{data: Map.merge(data, %{"type" => "Article"})}
end
def tombstone_factory do