test/jdk/java/net/httpclient/MappingResponseSubscriber.java
branchhttp-client-branch
changeset 56771 73a6534bce94
parent 56451 9585061fdb04
child 56775 cc4918aedfe7
equal deleted inserted replaced
56770:f1626bc0a010 56771:73a6534bce94
   222         http2TestServer.addHandler(h2_fixedLengthHandler, "/http2/fixed");
   222         http2TestServer.addHandler(h2_fixedLengthHandler, "/http2/fixed");
   223         http2TestServer.addHandler(h2_chunkedHandler, "/http2/chunk");
   223         http2TestServer.addHandler(h2_chunkedHandler, "/http2/chunk");
   224         http2URI_fixed = "http://" + http2TestServer.serverAuthority() + "/http2/fixed";
   224         http2URI_fixed = "http://" + http2TestServer.serverAuthority() + "/http2/fixed";
   225         http2URI_chunk = "http://" + http2TestServer.serverAuthority() + "/http2/chunk";
   225         http2URI_chunk = "http://" + http2TestServer.serverAuthority() + "/http2/chunk";
   226 
   226 
   227         https2TestServer = new Http2TestServer("localhost", true, 0);
   227         https2TestServer = new Http2TestServer("localhost", true, sslContext);
   228         https2TestServer.addHandler(h2_fixedLengthHandler, "/https2/fixed");
   228         https2TestServer.addHandler(h2_fixedLengthHandler, "/https2/fixed");
   229         https2TestServer.addHandler(h2_chunkedHandler, "/https2/chunk");
   229         https2TestServer.addHandler(h2_chunkedHandler, "/https2/chunk");
   230         https2URI_fixed = "https://" + https2TestServer.serverAuthority() + "/https2/fixed";
   230         https2URI_fixed = "https://" + https2TestServer.serverAuthority() + "/https2/fixed";
   231         https2URI_chunk = "https://" + https2TestServer.serverAuthority() + "/https2/chunk";
   231         https2URI_chunk = "https://" + https2TestServer.serverAuthority() + "/https2/chunk";
   232 
   232