Merge branch 'feature/configurable-blocks' into 'develop'
[akkoma] / test / web / mastodon_api / status_view_test.exs
index d9a0a8a95aed9dc34e8c46801bca42128e2242ef..d28c3cbadcbe7b2b490349793acff355510ff3b4 100644 (file)
@@ -64,11 +64,11 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
 
     status = StatusView.render("status.json", %{activity: activity})
 
-    assert status.in_reply_to_id == note.id
+    assert status.in_reply_to_id == to_string(note.id)
 
     [status] = StatusView.render("index.json", %{activities: [activity], as: :activity})
 
-    assert status.in_reply_to_id == note.id
+    assert status.in_reply_to_id == to_string(note.id)
   end
 
   test "contains mentions" do