aboutsummaryrefslogtreecommitdiffstats
path: root/community/crystal/fix-cipher-check-in-openssl-socket-spec.patch
blob: 70f21cf6cbe63aa349117282619a30d14efbfa0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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