diff options
author | Lain Soykaf <lain@lain.com> | 2025-02-25 17:36:05 +0400 |
---|---|---|
committer | Lain Soykaf <lain@lain.com> | 2025-02-25 17:36:05 +0400 |
commit | 70a784e16a72426522c5045ec8281a59f0298ffd (patch) | |
tree | 0773d4b9a5175525f65113a42fadb23b2eafa8a0 | |
parent | fd128ec7c2d73842a168a25c1a9e67c6c23504e6 (diff) | |
download | pleroma-70a784e16a72426522c5045ec8281a59f0298ffd.tar.gz pleroma-70a784e16a72426522c5045ec8281a59f0298ffd.zip |
AutolinkerToLinkifyTest: Asyncify
-rw-r--r-- | test/pleroma/repo/migrations/autolinker_to_linkify_test.exs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/pleroma/repo/migrations/autolinker_to_linkify_test.exs b/test/pleroma/repo/migrations/autolinker_to_linkify_test.exs index 9847781f0..99522994a 100644 --- a/test/pleroma/repo/migrations/autolinker_to_linkify_test.exs +++ b/test/pleroma/repo/migrations/autolinker_to_linkify_test.exs @@ -3,12 +3,11 @@ # SPDX-License-Identifier: AGPL-3.0-only defmodule Pleroma.Repo.Migrations.AutolinkerToLinkifyTest do - use Pleroma.DataCase + use Pleroma.DataCase, async: true import Pleroma.Factory import Pleroma.Tests.Helpers alias Pleroma.ConfigDB - setup do: clear_config(Pleroma.Formatter) setup_all do: require_migration("20200716195806_autolinker_to_linkify") test "change/0 converts auto_linker opts for Pleroma.Formatter", %{migration: migration} do |