this should be looking at the follower's bio, not the user's bio.
authorensra <ensra@users.noreply.github.com>
Tue, 21 Aug 2018 14:25:21 +0000 (15:25 +0100)
committerensra <ensra@users.noreply.github.com>
Tue, 21 Aug 2018 14:25:21 +0000 (15:25 +0100)
fixes test.

test/web/twitter_api/views/user_view_test.exs

index 180b7602ee80dedd259b0ee8d8993e3b96338ca2..24a5c5bca4f51453812d53687c4174750b00c3e3 100644 (file)
@@ -144,8 +144,8 @@ defmodule Pleroma.Web.TwitterAPI.UserViewTest do
       "name" => follower.name,
       "screen_name" => follower.nickname,
       "name_html" => follower.name,
-      "description" => HtmlSanitizeEx.strip_tags(user.bio |> String.replace("<br>", "\n")),
-      "description_html" => HtmlSanitizeEx.basic_html(user.bio),
+      "description" => HtmlSanitizeEx.strip_tags(follower.bio |> String.replace("<br>", "\n")),
+      "description_html" => HtmlSanitizeEx.basic_html(follower.bio),
       "created_at" => follower.inserted_at |> Utils.format_naive_asctime(),
       "favourites_count" => 0,
       "statuses_count" => 0,