Fix compatibility with Elixir v1.10

This commit is contained in:
Egor Kislitsyn 2020-01-28 18:23:59 +04:00
parent b12f306473
commit 2ddd1bb088
No known key found for this signature in database
GPG Key ID: 1B49CB15B71E7805
3 changed files with 2 additions and 3 deletions

View File

@ -6,6 +6,6 @@ defmodule Pleroma.RuntimeTest do
use ExUnit.Case, async: true
test "it loads custom runtime modules" do
assert Code.ensure_compiled?(RuntimeModule)
assert {:module, RuntimeModule} == Code.ensure_compiled(RuntimeModule)
end
end

View File

@ -19,7 +19,7 @@ defmodule HttpRequestMock do
else
error ->
with {:error, message} <- error do
Logger.warn(message)
Logger.warn(to_string(message))
end
{_, _r} = error

View File

@ -7,7 +7,6 @@ defmodule Pleroma.Web.MastodonAPI.SuggestionControllerTest do
alias Pleroma.Config
import ExUnit.CaptureLog
import Pleroma.Factory
import Tesla.Mock