MastoAPI: Remove domain ending from account name.

This commit is contained in:
Roger Braun 2017-09-12 09:34:39 +02:00
commit 44a650235b
2 changed files with 4 additions and 4 deletions

View file

@ -4,11 +4,11 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
alias Pleroma.Web.MastodonAPI.AccountView
test "Represent a user account" do
user = insert(:user, %{info: %{"note_count" => 5, "follower_count" => 3}})
user = insert(:user, %{info: %{"note_count" => 5, "follower_count" => 3}, nickname: "shp@shitposter.club"})
expected = %{
id: user.id,
username: user.nickname,
username: "shp",
acct: user.nickname,
display_name: user.name,
locked: false,