mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-01-22 15:08:08 +00:00
HttpRequestMock: Improve non-implemented error message
This commit is contained in:
parent
18668447d2
commit
e22737ffb5
1 changed files with 6 additions and 3 deletions
|
@ -975,7 +975,7 @@ defmodule HttpRequestMock do
|
|||
|
||||
def get(url, query, body, headers) do
|
||||
{:error,
|
||||
"Not implemented the mock response for get #{inspect(url)}, #{query}, #{inspect(body)}, #{
|
||||
"Mock response not implemented for GET #{inspect(url)}, #{query}, #{inspect(body)}, #{
|
||||
inspect(headers)
|
||||
}"}
|
||||
end
|
||||
|
@ -1037,7 +1037,10 @@ defmodule HttpRequestMock do
|
|||
}}
|
||||
end
|
||||
|
||||
def post(url, _query, _body, _headers) do
|
||||
{:error, "Not implemented the mock response for post #{inspect(url)}"}
|
||||
def post(url, query, body, headers) do
|
||||
{:error,
|
||||
"Mock response not implemented for POST #{inspect(url)}, #{query}, #{inspect(body)}, #{
|
||||
inspect(headers)
|
||||
}"}
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue