diff options
| author | Francis Dinh <archaeme@biribiri.dev> | 2019-05-09 19:48:41 -0400 | 
|---|---|---|
| committer | Francis Dinh <archaeme@biribiri.dev> | 2019-05-09 19:58:34 -0400 | 
| commit | 2a54e8c1f51cb681cefc5ba08ad0f1c7ed1fdc6d (patch) | |
| tree | 81d0dd330f4f8ccd28d1ea3b1cdf61fe815ebc7d /test/web | |
| parent | e4bc4408f934ab31fb50d161b6dcff31a1c1be38 (diff) | |
| download | pleroma-2a54e8c1f51cb681cefc5ba08ad0f1c7ed1fdc6d.tar.gz pleroma-2a54e8c1f51cb681cefc5ba08ad0f1c7ed1fdc6d.zip  | |
Use "repeated" instead of "retweeted" for repeated statuses in Twitter API
This makes it consistent with the language used in Pleroma FE (at least
in English).
Resolves https://git.pleroma.social/pleroma/pleroma-fe/issues/533
Diffstat (limited to 'test/web')
| -rw-r--r-- | test/web/twitter_api/views/activity_view_test.exs | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/twitter_api/views/activity_view_test.exs b/test/web/twitter_api/views/activity_view_test.exs index 1aa533b48..43bd77f78 100644 --- a/test/web/twitter_api/views/activity_view_test.exs +++ b/test/web/twitter_api/views/activity_view_test.exs @@ -295,8 +295,8 @@ defmodule Pleroma.Web.TwitterAPI.ActivityViewTest do        "id" => announce.id,        "is_local" => true,        "is_post_verb" => false, -      "statusnet_html" => "shp retweeted a status.", -      "text" => "shp retweeted a status.", +      "statusnet_html" => "shp repeated a status.", +      "text" => "shp repeated a status.",        "uri" => "tag:#{announce.data["id"]}:objectType=note",        "user" => UserView.render("show.json", user: other_user),        "retweeted_status" => ActivityView.render("activity.json", activity: activity),  | 
