aboutsummaryrefslogtreecommitdiffstats
path: root/community/crystal/fix-spec-http-server.patch
blob: 9ab3a511e96f4b8aeb5d806d0232e1958e987f39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- a/spec/std/http/server/server_spec.cr
+++ b/spec/std/http/server/server_spec.cr
@@ -491,7 +491,7 @@
       end
     {% end %}
 
-    it "handles exception during SSL handshake (#6577)" do
+    pending "handles exception during SSL handshake (#6577)" do
       server = SilentErrorHTTPServer.new do |context|
         context.response.print "ok"
         context.response.close
@@ -524,7 +524,7 @@
     end
 
     describe "#close" do
-      it "closes gracefully" do
+      pending "closes gracefully" do
         server = Server.new do |context|
           context.response.flush
           context.response.puts "foo"