diff options
author | kaniini <nenolod@gmail.com> | 2019-05-16 20:11:12 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2019-05-16 20:11:12 +0000 |
commit | bf84d50c76cb8d9a6a9ea77a7620c9545b10a7ed (patch) | |
tree | d2f318ac678c2dbb65bf49f622d0979778c71648 /test/web/common_api | |
parent | a328251a525bf09a26d3d52c34f48f1e97d34f1b (diff) | |
parent | 4711d8151c8cb7ce2024f378e17b3a113a3aac1c (diff) | |
download | pleroma-bf84d50c76cb8d9a6a9ea77a7620c9545b10a7ed.tar.gz |
Merge branch 'feature/890-add-report-uri' into 'develop'
Feature/890 add report uri
Closes #890
See merge request pleroma/pleroma!1164
Diffstat (limited to 'test/web/common_api')
-rw-r--r-- | test/web/common_api/common_api_test.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/web/common_api/common_api_test.exs b/test/web/common_api/common_api_test.exs index 38b5aa65f..696060fb1 100644 --- a/test/web/common_api/common_api_test.exs +++ b/test/web/common_api/common_api_test.exs @@ -310,14 +310,14 @@ defmodule Pleroma.Web.CommonAPITest do test "add a reblog mute", %{muter: muter, muted: muted} do {:ok, muter} = CommonAPI.hide_reblogs(muter, muted) - assert Pleroma.User.showing_reblogs?(muter, muted) == false + assert User.showing_reblogs?(muter, muted) == false end test "remove a reblog mute", %{muter: muter, muted: muted} do {:ok, muter} = CommonAPI.hide_reblogs(muter, muted) {:ok, muter} = CommonAPI.show_reblogs(muter, muted) - assert Pleroma.User.showing_reblogs?(muter, muted) == true + assert User.showing_reblogs?(muter, muted) == true end end end |