diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/migration_helper/notification_backfill_test.exs (renamed from test/migration_helper_test.exs) | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/test/migration_helper_test.exs b/test/migration_helper/notification_backfill_test.exs index 1c8173987..2a62a2b00 100644 --- a/test/migration_helper_test.exs +++ b/test/migration_helper/notification_backfill_test.exs @@ -2,11 +2,11 @@  # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>  # SPDX-License-Identifier: AGPL-3.0-only -defmodule Pleroma.MigrationHelperTest do +defmodule Pleroma.MigrationHelper.NotificationBackfillTest do    use Pleroma.DataCase    alias Pleroma.Activity -  alias Pleroma.MigrationHelper +  alias Pleroma.MigrationHelper.NotificationBackfill    alias Pleroma.Notification    alias Pleroma.Repo    alias Pleroma.Web.CommonAPI @@ -35,7 +35,7 @@ defmodule Pleroma.MigrationHelperTest do        assert {5, nil} = Repo.update_all(Notification, set: [type: nil]) -      MigrationHelper.fill_in_notification_types() +      NotificationBackfill.fill_in_notification_types()        assert %{type: "mention"} =                 Repo.get_by(Notification, user_id: other_user.id, activity_id: post.id) | 
