test/jdk/java/net/URLConnection/B5052093.java
changeset 58365 73950479184b
parent 54681 edd709e64ea1
--- a/test/jdk/java/net/URLConnection/B5052093.java	Thu Sep 26 14:41:09 2019 -0700
+++ b/test/jdk/java/net/URLConnection/B5052093.java	Fri Sep 27 09:55:35 2019 +0100
@@ -33,6 +33,7 @@
 import java.net.*;
 import java.io.*;
 import sun.net.www.protocol.file.FileURLConnection;
+import static java.net.Proxy.NO_PROXY;
 
 public class B5052093 implements HttpCallback {
     private static TestHttpServer server;
@@ -68,7 +69,7 @@
         server = new TestHttpServer(new B5052093(), 1, 10, loopback, 0);
         try {
             URL url = new URL("http://" + server.getAuthority() + "/foo");
-            URLConnection conn = url.openConnection();
+            URLConnection conn = url.openConnection(NO_PROXY);
             int i = conn.getContentLength();
             long l = conn.getContentLengthLong();
             if (i != -1 || l != testSize) {