diff options
Diffstat (limited to 'test/web/instances')
| -rw-r--r-- | test/web/instances/instance_test.exs | 6 | ||||
| -rw-r--r-- | test/web/instances/instances_test.exs | 6 | 
2 files changed, 4 insertions, 8 deletions
| diff --git a/test/web/instances/instance_test.exs b/test/web/instances/instance_test.exs index e54d708ad..e463200ca 100644 --- a/test/web/instances/instance_test.exs +++ b/test/web/instances/instance_test.exs @@ -1,5 +1,5 @@  # Pleroma: A lightweight social networking server -# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/> +# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>  # SPDX-License-Identifier: AGPL-3.0-only  defmodule Pleroma.Instances.InstanceTest do @@ -10,9 +10,7 @@ defmodule Pleroma.Instances.InstanceTest do    import Pleroma.Factory -  clear_config_all([:instance, :federation_reachability_timeout_days]) do -    Pleroma.Config.put([:instance, :federation_reachability_timeout_days], 1) -  end +  setup_all do: clear_config([:instance, :federation_reachability_timeout_days], 1)    describe "set_reachable/1" do      test "clears `unreachable_since` of existing matching Instance record having non-nil `unreachable_since`" do diff --git a/test/web/instances/instances_test.exs b/test/web/instances/instances_test.exs index 65b03b155..d2618025c 100644 --- a/test/web/instances/instances_test.exs +++ b/test/web/instances/instances_test.exs @@ -1,5 +1,5 @@  # Pleroma: A lightweight social networking server -# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/> +# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>  # SPDX-License-Identifier: AGPL-3.0-only  defmodule Pleroma.InstancesTest do @@ -7,9 +7,7 @@ defmodule Pleroma.InstancesTest do    use Pleroma.DataCase -  clear_config_all([:instance, :federation_reachability_timeout_days]) do -    Pleroma.Config.put([:instance, :federation_reachability_timeout_days], 1) -  end +  setup_all do: clear_config([:instance, :federation_reachability_timeout_days], 1)    describe "reachable?/1" do      test "returns `true` for host / url with unknown reachability status" do | 
