1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-12 13:00:29 +01:00

fix for updated hackney

warning: :hackney_connect.partial_chain/1 is undefined or private
This commit is contained in:
Alexander Strizhakov 2020-05-31 12:38:24 +03:00
parent 9a4fde9766
commit 23decaab81
No known key found for this signature in database
GPG Key ID: 022896A53AEF1381

View File

@ -382,12 +382,6 @@ defmodule Pleroma.ConfigDBTest do
assert ConfigDB.to_elixir_types([%{"tuple" => [":key", "value"]}]) == [key: "value"]
end
test "keyword with partial_chain key" do
assert ConfigDB.to_elixir_types([
%{"tuple" => [":partial_chain", "&:hackney_connect.partial_chain/1"]}
]) == [partial_chain: &:hackney_connect.partial_chain/1]
end
test "keyword" do
assert ConfigDB.to_elixir_types([
%{"tuple" => [":types", "Pleroma.PostgresTypes"]},