diff options
| author | Lain Soykaf <lain@lain.com> | 2023-12-10 17:10:18 +0400 | 
|---|---|---|
| committer | Lain Soykaf <lain@lain.com> | 2023-12-10 17:10:18 +0400 | 
| commit | 68f7a79f2800563ccdadf12197372415022f07f1 (patch) | |
| tree | 2ca33d8d02f22e72f55c257dc7c73e2f1cb9a010 | |
| parent | b7ce2cf6a8a527a7b32ce6a1f34310928622c4ce (diff) | |
| download | pleroma-68f7a79f2800563ccdadf12197372415022f07f1.tar.gz pleroma-68f7a79f2800563ccdadf12197372415022f07f1.zip | |
Tests: Remove async from cases that use Mock
| -rw-r--r-- | test/pleroma/activity/ir/topics_test.exs | 2 | ||||
| -rw-r--r-- | test/pleroma/workers/receiver_worker_test.exs | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/test/pleroma/activity/ir/topics_test.exs b/test/pleroma/activity/ir/topics_test.exs index d299fea63..36a6ca026 100644 --- a/test/pleroma/activity/ir/topics_test.exs +++ b/test/pleroma/activity/ir/topics_test.exs @@ -3,7 +3,7 @@  # SPDX-License-Identifier: AGPL-3.0-only  defmodule Pleroma.Activity.Ir.TopicsTest do -  use Pleroma.DataCase, async: true +  use Pleroma.DataCase    alias Pleroma.Activity    alias Pleroma.Activity.Ir.Topics diff --git a/test/pleroma/workers/receiver_worker_test.exs b/test/pleroma/workers/receiver_worker_test.exs index acea0ae00..b9b6d6af2 100644 --- a/test/pleroma/workers/receiver_worker_test.exs +++ b/test/pleroma/workers/receiver_worker_test.exs @@ -3,7 +3,7 @@  # SPDX-License-Identifier: AGPL-3.0-only  defmodule Pleroma.Workers.ReceiverWorkerTest do -  use Pleroma.DataCase, async: true +  use Pleroma.DataCase    use Oban.Testing, repo: Pleroma.Repo    import Mock | 
