From 8d87cd12a9e8431e80cd7398f207ed7bc6f5b27d Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Fri, 4 Jun 2021 10:01:12 +0200 Subject: [PATCH] Fix an activity test related to Notifier mock Signed-off-by: Thomas Citharel --- test/graphql/resolvers/activity_test.exs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/graphql/resolvers/activity_test.exs b/test/graphql/resolvers/activity_test.exs index 437c0e55d..5b2053f61 100644 --- a/test/graphql/resolvers/activity_test.exs +++ b/test/graphql/resolvers/activity_test.exs @@ -13,6 +13,12 @@ defmodule Mobilizon.GraphQL.Resolvers.ActivityTest do setup %{conn: conn} do group = insert(:group) + + Mobilizon.Config.put([Mobilizon.Service.Notifier, :notifiers], [ + Mobilizon.Service.Notifier.Email, + Mobilizon.Service.Notifier.Push + ]) + {:ok, conn: conn, group: group} end