This commit is contained in:
Mirai Kumiko 2025-06-20 09:25:53 +02:00
parent c288831bb2
commit 4929ce21fd
Signed by: miraikumiko
GPG key ID: 3F178B1B5E0CB278

View file

@ -37,15 +37,15 @@ defmodule NullaWeb.OutboxControllerTest do
endpoints: Jason.OrderedObject.new(sharedInbox: "http://localhost/inbox") endpoints: Jason.OrderedObject.new(sharedInbox: "http://localhost/inbox")
}) })
note_id = Snowflake.next_id() note_id = Snowflake.next_id()
{:ok, _note} = {:ok, _note} =
Note.create_note(%{ Note.create_note(%{
url: "#{actor.url}/#{note_id}", url: "#{actor.url}/#{note_id}",
content: "Hello World from Nulla!", content: "Hello World from Nulla!",
language: "en", language: "en",
actor_id: actor.id actor_id: actor.id
}) })
:ok :ok
end end