aboutsummaryrefslogtreecommitdiff
path: root/test/pleroma/config_db_test.exs
diff options
context:
space:
mode:
authorPierre-Louis Bonicoli <pierre-louis.bonicoli@libregerbil.fr>2022-05-19 02:12:55 +0200
committerPierre-Louis Bonicoli <pierre-louis.bonicoli@libregerbil.fr>2022-05-31 00:51:48 +0200
commit6f23fc8e08ae5a968cd9aa8dd8744e21ee9e3872 (patch)
treeb6de0472c58389d510a80bfcc15270608d4b5f28 /test/pleroma/config_db_test.exs
parenta1587743641c5719f5b297971c0ed69e867f8241 (diff)
downloadpleroma-6f23fc8e08ae5a968cd9aa8dd8744e21ee9e3872.tar.gz
Add tlsv1.3 to suggestions
Diffstat (limited to 'test/pleroma/config_db_test.exs')
-rw-r--r--test/pleroma/config_db_test.exs5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/pleroma/config_db_test.exs b/test/pleroma/config_db_test.exs
index ea44b716f..ba7c615e2 100644
--- a/test/pleroma/config_db_test.exs
+++ b/test/pleroma/config_db_test.exs
@@ -238,10 +238,11 @@ defmodule Pleroma.ConfigDBTest do
end
test "ssl options" do
- assert ConfigDB.to_elixir_types([":tlsv1", ":tlsv1.1", ":tlsv1.2"]) == [
+ assert ConfigDB.to_elixir_types([":tlsv1", ":tlsv1.1", ":tlsv1.2", ":tlsv1.3"]) == [
:tlsv1,
:"tlsv1.1",
- :"tlsv1.2"
+ :"tlsv1.2",
+ :"tlsv1.3"
]
end