Browse Source

filename and test fixes

floki-fast_html-2-electric-boogalo
Alexander Strizhakov 4 years ago
parent
commit
33bd8fbffe
No known key found for this signature in database GPG Key ID: 22896A53AEF1381
3 changed files with 5 additions and 2 deletions
  1. +1
    -1
      mix.exs
  2. +0
    -0
      restarter/mix.exs
  3. +4
    -1
      test/config/transfer_task_test.exs

+ 1
- 1
mix.exs View File

@@ -172,7 +172,7 @@ defmodule Pleroma.Mixfile do
git: "https://git.pleroma.social/pleroma/elixir-libraries/elixir-captcha.git",
ref: "e0f16822d578866e186a0974d65ad58cddc1e2ab"},
{:mox, "~> 0.5", only: :test},
{:restarter, path: "../restarter"}
{:restarter, path: "./restarter"}
] ++ oauth_deps()
end



restarter/mix .exs → restarter/mix.exs View File


+ 4
- 1
test/config/transfer_task_test.exs View File

@@ -172,7 +172,10 @@ defmodule Pleroma.Config.TransferTaskTest do
value: [seconds_valid: 60]
})

assert capture_log(fn -> TransferTask.load_and_update_env([], false) end) =~ ""
refute String.contains?(
capture_log(fn -> TransferTask.load_and_update_env([], false) end),
"pleroma restarted"
)
end
end
end

Loading…
Cancel
Save