mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 02:05:12 +00:00
[#210] Refactoring.
This commit is contained in:
parent
48e6193bf2
commit
44ab3dbe2c
|
@ -1260,14 +1260,13 @@ defmodule Pleroma.Web.TwitterAPI.ControllerTest do
|
|||
object = insert(:note)
|
||||
description = "Informative description of the image. Initial: #{object.data["name"]}}"
|
||||
|
||||
_conn =
|
||||
conn
|
||||
|> assign(:user, user)
|
||||
|> post("/api/media/metadata/create.json", %{
|
||||
"media_id" => object.id,
|
||||
"alt_text" => %{"text" => description}
|
||||
})
|
||||
|> json_response(:no_content)
|
||||
conn
|
||||
|> assign(:user, user)
|
||||
|> post("/api/media/metadata/create.json", %{
|
||||
"media_id" => object.id,
|
||||
"alt_text" => %{"text" => description}
|
||||
})
|
||||
|> json_response(:no_content)
|
||||
|
||||
object = Repo.get!(Object, object.id)
|
||||
assert object.data["name"] == description
|
||||
|
|
Loading…
Reference in a new issue