Merge branch 'feature/mastodon-api-fixes' into develop
[akkoma] / test / web / mastodon_api / status_view_test.exs
index caa2c9d83187f3c62c1a2e606a79aabc3e83e949..5aeee98c49937ff7a18fc8fca46a59f6e43818e1 100644 (file)
@@ -17,7 +17,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
     |> String.replace(~r/\.\d+Z/, ".000Z")
 
     expected = %{
-      id: note.id,
+      id: to_string(note.id),
       uri: note.data["object"]["id"],
       url: note.data["object"]["id"],
       account: AccountView.render("account.json", %{user: user}),
@@ -101,7 +101,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
 
     represented = StatusView.render("status.json", %{for: user, activity: reblog})
 
-    assert represented[:id] == reblog.id
-    assert represented[:reblog][:id] == activity.id
+    assert represented[:id] == to_string(reblog.id)
+    assert represented[:reblog][:id] == to_string(activity.id)
   end
 end