diff options
author | rinpatch <rinpatch@sdf.org> | 2019-09-30 00:26:49 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-09-30 00:26:49 +0300 |
commit | 1fba66178dd174b96e4531b59d134a62b9013e87 (patch) | |
tree | 1f2581f2aab731bd9554fdf8bec51a4ff783d6c1 /test/web/mastodon_api | |
parent | 81b4243173f31fd47eb598fb7ed95cadadf90c2f (diff) | |
parent | 90537f398160eddfb8033c1cdfe1acc21ee63c4a (diff) | |
download | pleroma-1fba66178dd174b96e4531b59d134a62b9013e87.tar.gz pleroma-1fba66178dd174b96e4531b59d134a62b9013e87.zip |
Merge branch 'develop' into cleanup/drop-subscription-table-if-exists
Diffstat (limited to 'test/web/mastodon_api')
-rw-r--r-- | test/web/mastodon_api/mastodon_api_test.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/mastodon_api/mastodon_api_test.exs b/test/web/mastodon_api/mastodon_api_test.exs index 848fce7ad..7fcb2bd55 100644 --- a/test/web/mastodon_api/mastodon_api_test.exs +++ b/test/web/mastodon_api/mastodon_api_test.exs @@ -75,9 +75,9 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPITest do User.subscribe(subscriber, user) - {:ok, status} = CommonAPI.post(user, %{"status" => "Akariiiin @#{subscriber.nickname}"}) + {:ok, status} = CommonAPI.post(user, %{"status" => "Akariiiin"}) - {:ok, status1} = CommonAPI.post(user, %{"status" => "Magi @#{subscriber.nickname}"}) + {:ok, status1} = CommonAPI.post(user, %{"status" => "Magi"}) {:ok, [notification]} = Notification.create_notifications(status) {:ok, [notification1]} = Notification.create_notifications(status1) res = MastodonAPI.get_notifications(subscriber) |