From c58fd4c038da8305d8840c38f525ceb9f13a644d Mon Sep 17 00:00:00 2001
From: lain <lain@soykaf.club>
Date: Sat, 4 May 2019 15:36:48 +0200
Subject: [PATCH] BBS: Fix tests.

---
 test/bbs/handler_test.exs | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/test/bbs/handler_test.exs b/test/bbs/handler_test.exs
index 1386a2d16..148df6ddd 100644
--- a/test/bbs/handler_test.exs
+++ b/test/bbs/handler_test.exs
@@ -3,6 +3,7 @@ defmodule Pleroma.BBS.HandlerTest do
   alias Pleroma.Activity
   alias Pleroma.BBS.Handler
   alias Pleroma.Web.CommonAPI
+  alias Pleroma.Object
   alias Pleroma.Repo
   alias Pleroma.User
 
@@ -49,7 +50,8 @@ defmodule Pleroma.BBS.HandlerTest do
       )
 
     assert activity.actor == user.ap_id
-    assert activity.data["object"]["content"] == "this is a test post"
+    object = Object.normalize(activity)
+    assert object.data["content"] == "this is a test post"
   end
 
   test "replying" do
@@ -74,7 +76,8 @@ defmodule Pleroma.BBS.HandlerTest do
       )
 
     assert reply.actor == user.ap_id
-    assert reply.data["object"]["content"] == "this is a reply"
-    assert reply.data["object"]["inReplyTo"] == activity.data["object"]["id"]
+    object = Object.normalize(reply)
+    assert object.data["content"] == "this is a reply"
+    assert object.data["inReplyTo"] == activity.data["object"]
   end
 end