diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2020-01-28 18:23:59 +0400 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2020-01-28 18:23:59 +0400 |
commit | 2ddd1bb0887425effd1c59f358e1dc2c5b98f65c (patch) | |
tree | 5c49d3714f4e3e611aa13a4e80765bb0c6f8b1c6 /test/support/http_request_mock.ex | |
parent | b12f3064730648de992f934cf5a23cadb5206b9d (diff) | |
download | pleroma-2ddd1bb0887425effd1c59f358e1dc2c5b98f65c.tar.gz pleroma-2ddd1bb0887425effd1c59f358e1dc2c5b98f65c.zip |
Fix compatibility with Elixir v1.10
Diffstat (limited to 'test/support/http_request_mock.ex')
-rw-r--r-- | test/support/http_request_mock.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/support/http_request_mock.ex b/test/support/http_request_mock.ex index f43de700d..ba3341327 100644 --- a/test/support/http_request_mock.ex +++ b/test/support/http_request_mock.ex @@ -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 |