From: Alexander Strizhakov Date: Sun, 31 May 2020 09:38:24 +0000 (+0300) Subject: fix for updated hackney X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=23decaab81b900bff0f6eacad7ea6a894239e4ce;p=akkoma fix for updated hackney warning: :hackney_connect.partial_chain/1 is undefined or private --- diff --git a/test/config/config_db_test.exs b/test/config/config_db_test.exs index a04575c6f..8d753e255 100644 --- a/test/config/config_db_test.exs +++ b/test/config/config_db_test.exs @@ -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"]},