diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-05-31 12:38:24 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-06-16 15:54:22 +0300 |
commit | 23decaab81b900bff0f6eacad7ea6a894239e4ce (patch) | |
tree | 89103a39161a35ca2d19523e1b0cfceba3a74543 /test/config | |
parent | 9a4fde97661595630ea840917ef83b4786f2e2d3 (diff) | |
download | pleroma-23decaab81b900bff0f6eacad7ea6a894239e4ce.tar.gz |
fix for updated hackney
warning: :hackney_connect.partial_chain/1 is undefined or private
Diffstat (limited to 'test/config')
-rw-r--r-- | test/config/config_db_test.exs | 6 |
1 files changed, 0 insertions, 6 deletions
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"]}, |