aboutsummaryrefslogtreecommitdiffstats
path: root/community/crystal/fix-cipher-check-in-openssl-socket-spec.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/crystal/fix-cipher-check-in-openssl-socket-spec.patch')
-rw-r--r--community/crystal/fix-cipher-check-in-openssl-socket-spec.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/community/crystal/fix-cipher-check-in-openssl-socket-spec.patch b/community/crystal/fix-cipher-check-in-openssl-socket-spec.patch
new file mode 100644
index 0000000000..70f21cf6cb
--- /dev/null
+++ b/community/crystal/fix-cipher-check-in-openssl-socket-spec.patch
@@ -0,0 +1,13 @@
+diff --git a/spec/std/openssl/ssl/socket_spec.cr b/spec/std/openssl/ssl/socket_spec.cr
+index 04e2162e7..5372a190c 100644
+--- a/spec/std/openssl/ssl/socket_spec.cr
++++ b/spec/std/openssl/ssl/socket_spec.cr
+@@ -15,7 +15,7 @@ describe OpenSSL::SSL::Socket do
+ end
+
+ client = server.accept
+- client.cipher.should contain "RSA"
++ client.cipher.should eq "TLS_AES_256_GCM_SHA384"
+ client.close
+ end
+ end