aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorhref <href@random.sh>2020-07-08 19:23:32 +0200
committerrinpatch <rinpatch@sdf.org>2020-07-15 15:26:35 +0300
commite499275076422631b31f1455ab720aae9d7786d2 (patch)
tree3cf29a3d32d65b600155b576f1c624558e7389e8 /test
parentafd378f84c4c1b784eba11b35c21e0b6ae3d7915 (diff)
downloadpleroma-e499275076422631b31f1455ab720aae9d7786d2.tar.gz
Don't test tls_options in adapter helper test.
Diffstat (limited to 'test')
-rw-r--r--test/http/adapter_helper/gun_test.exs3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/http/adapter_helper/gun_test.exs b/test/http/adapter_helper/gun_test.exs
index 49eebf355..80589c73d 100644
--- a/test/http/adapter_helper/gun_test.exs
+++ b/test/http/adapter_helper/gun_test.exs
@@ -21,7 +21,6 @@ defmodule Pleroma.HTTP.AdapterHelper.GunTest do
opts = Gun.options([receive_conn: false], uri)
assert opts[:certificates_verification]
- assert opts[:tls_opts][:log_level] == :warning
end
test "https ipv4 with default port" do
@@ -29,7 +28,6 @@ defmodule Pleroma.HTTP.AdapterHelper.GunTest do
opts = Gun.options([receive_conn: false], uri)
assert opts[:certificates_verification]
- assert opts[:tls_opts][:log_level] == :warning
end
test "https ipv6 with default port" do
@@ -37,7 +35,6 @@ defmodule Pleroma.HTTP.AdapterHelper.GunTest do
opts = Gun.options([receive_conn: false], uri)
assert opts[:certificates_verification]
- assert opts[:tls_opts][:log_level] == :warning
end
test "https url with non standart port" do