diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-05-13 09:29:41 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-05-13 11:38:23 +0300 |
commit | 2c356a4bacc534702e9d1c1451fb351152c4bf7a (patch) | |
tree | 075ff5de7462960ab04d7302f2678d020c1c5fd8 | |
parent | 12635bc15626dd7d2d4a02b9c8d763687a0d34ce (diff) | |
download | pleroma-2c356a4bacc534702e9d1c1451fb351152c4bf7a.tar.gz |
don't use async with global mocks
-rw-r--r-- | test/web/rel_me_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/rel_me_test.exs b/test/web/rel_me_test.exs index e05a8863d..65255916d 100644 --- a/test/web/rel_me_test.exs +++ b/test/web/rel_me_test.exs @@ -3,7 +3,7 @@ # SPDX-License-Identifier: AGPL-3.0-only defmodule Pleroma.Web.RelMeTest do - use ExUnit.Case, async: true + use ExUnit.Case setup_all do Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end) |