diff options
author | Alex S <alex.strizhakov@gmail.com> | 2019-05-16 17:35:07 +0700 |
---|---|---|
committer | Alex S <alex.strizhakov@gmail.com> | 2019-05-16 17:35:07 +0700 |
commit | 4711d8151c8cb7ce2024f378e17b3a113a3aac1c (patch) | |
tree | e55f36369ba3b1e11a72c44e4fc37b92bcbcc588 | |
parent | 8355d0607e986f5a2cc5addfb2bcb35f799f10cb (diff) | |
download | pleroma-4711d8151c8cb7ce2024f378e17b3a113a3aac1c.tar.gz |
try this
-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 8d4f401ee..b0c441a37 100644 --- a/test/web/common_api/common_api_test.exs +++ b/test/web/common_api/common_api_test.exs @@ -279,14 +279,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 |