From abec838b512b0725ffef9148ebfd51140af3cc3a Mon Sep 17 00:00:00 2001 From: Sam Tobin-Hochstadt Date: Wed, 14 Oct 2020 10:53:26 -0400 Subject: [PATCH] Disable test that no longer works. At some point in September 2020, q.com:9887 stopped working for this test. It's disabled until we can find a replacement. As far as I can tell, there aren't any sites that behave the way q.com did prior to September 2020. --- pkgs/net-test/tests/net/http-proxy/proxy-server.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/net-test/tests/net/http-proxy/proxy-server.rkt b/pkgs/net-test/tests/net/http-proxy/proxy-server.rkt index 8f8ebe7784..e8fcfdb3fb 100644 --- a/pkgs/net-test/tests/net/http-proxy/proxy-server.rkt +++ b/pkgs/net-test/tests/net/http-proxy/proxy-server.rkt @@ -101,7 +101,7 @@ (check-match (connect/test "GET" "/" #f) (regexp #px"^HTTP/\\S+\\s+405")) (check-match (connect/test "A B" "/" #f) (regexp #px"^HTTP/\\S+\\s+400")) - (check-match (connect/test "CONNECT" "q.com:9887" #f) (regexp #px"^HTTP/\\S+\\s+410")) + #;(check-match (connect/test "CONNECT" "q.com:9887" #f) (regexp #px"^HTTP/\\S+\\s+410")) (check-match (connect/test "CONNECT" (format "localhost:~a" echo-port) #f #:body "blah blah blah!") (regexp #px"^HTTP/\\S+\\s+200.*blah!$"))