MastoAPI: Make attachment ids strings.

This commit is contained in:
Roger Braun 2017-11-15 18:58:13 +01:00
commit ced0d64d75
2 changed files with 3 additions and 3 deletions

View file

@ -78,7 +78,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
}
expected = %{
id: 1638338801,
id: "1638338801",
type: "image",
url: "someurl",
remote_url: "someurl",
@ -90,7 +90,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
# If theres a "id", use that instead of the generated one
object = Map.put(object, "id", 2)
assert %{id: 2} = StatusView.render("attachment.json", %{attachment: object})
assert %{id: "2"} = StatusView.render("attachment.json", %{attachment: object})
end
test "a reblog" do