forked from AkkomaGang/akkoma
tests: activitypub: fix broken test due to invalid child object
This commit is contained in:
parent
f168a2add6
commit
fe000f82f8
1 changed files with 5 additions and 1 deletions
|
@ -93,7 +93,11 @@ test "removes doubled 'to' recipients" do
|
||||||
to: ["user1", "user1", "user2"],
|
to: ["user1", "user1", "user2"],
|
||||||
actor: user,
|
actor: user,
|
||||||
context: "",
|
context: "",
|
||||||
object: %{}
|
object: %{
|
||||||
|
"to" => ["user1", "user1", "user2"],
|
||||||
|
"type" => "Note",
|
||||||
|
"content" => "testing"
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
assert activity.data["to"] == ["user1", "user2"]
|
assert activity.data["to"] == ["user1", "user2"]
|
||||||
|
|
Loading…
Reference in a new issue