diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-02-29 11:34:50 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-02-29 11:34:50 +0300 |
commit | 814b275af7748df6bd11dfc6be1b4efce8d5ae70 (patch) | |
tree | e18b30dfa6eb020e593dbe1cc0e649da3e6ed394 /test/tasks/instance_test.exs | |
parent | 6b012ddd69aec0f85c22ad91dbb76e05f2edaf58 (diff) | |
parent | aad057a2d6baaa342f47f55d330f0731277dac06 (diff) | |
download | pleroma-814b275af7748df6bd11dfc6be1b4efce8d5ae70.tar.gz pleroma-814b275af7748df6bd11dfc6be1b4efce8d5ae70.zip |
Merge branch 'develop' into gun
Diffstat (limited to 'test/tasks/instance_test.exs')
-rw-r--r-- | test/tasks/instance_test.exs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/tasks/instance_test.exs b/test/tasks/instance_test.exs index d69275726..a0cc5d7c7 100644 --- a/test/tasks/instance_test.exs +++ b/test/tasks/instance_test.exs @@ -3,7 +3,7 @@ # SPDX-License-Identifier: AGPL-3.0-only defmodule Pleroma.InstanceTest do - use ExUnit.Case, async: true + use ExUnit.Case setup do File.mkdir_p!(tmp_path()) @@ -15,6 +15,8 @@ defmodule Pleroma.InstanceTest do if File.exists?(static_dir) do File.rm_rf(Path.join(static_dir, "robots.txt")) end + + Pleroma.Config.put([:instance, :static_dir], static_dir) end) :ok |