diff options
author | Mark Felder <feld@feld.me> | 2021-01-25 09:45:06 -0600 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2021-01-25 09:45:06 -0600 |
commit | 537ba1c5e07a33692ed63ca50b50e240efce6f88 (patch) | |
tree | 2a364998d729d1f65d5b87b5703604ac8d163678 /test/support/channel_case.ex | |
parent | 28581e03ad5761aa484a7fa427be8ab5695f0892 (diff) | |
parent | 0a6f5f479348eff5f5404d4455fcb8254809812f (diff) | |
download | pleroma-537ba1c5e07a33692ed63ca50b50e240efce6f88.tar.gz |
Merge branch 'develop' into refactor/deactivated_user_field
Diffstat (limited to 'test/support/channel_case.ex')
-rw-r--r-- | test/support/channel_case.ex | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/test/support/channel_case.ex b/test/support/channel_case.ex index 6888984a2..1fbf6f100 100644 --- a/test/support/channel_case.ex +++ b/test/support/channel_case.ex @@ -30,19 +30,5 @@ defmodule Pleroma.Web.ChannelCase do end end - setup tags do - :ok = Ecto.Adapters.SQL.Sandbox.checkout(Pleroma.Repo) - - if tags[:async] do - Mox.stub_with(Pleroma.CachexMock, Pleroma.NullCache) - Mox.set_mox_private() - else - Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, {:shared, self()}) - Mox.stub_with(Pleroma.CachexMock, Pleroma.CachexProxy) - Mox.set_mox_global() - Pleroma.DataCase.clear_cachex() - end - - :ok - end + setup tags, do: Pleroma.DataCase.setup_multi_process_mode(tags) end |