Skip to content

Commit 7156272

Browse files
Correct location of misplaced marker (#1446)
1 parent 5564081 commit 7156272

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/test/java/org/conscrypt/javax/net/ssl/HttpsURLConnectionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ public void successfulUrlConnect() throws Exception {
134134
Future<Void> future = executor.submit(server.run(op));
135135

136136
HttpsURLConnection connection = server.tlsConnection("/file");
137+
// g3-add: broken HTTPS hostname verification
137138
int response = connection.getResponseCode();
138139
assertEquals(200, response);
139140

@@ -152,7 +153,6 @@ public void urlReadTimeout() throws Exception {
152153
Future<Void> future = executor.submit(server.run(op));
153154

154155
HttpsURLConnection connection = server.tlsConnection("/file");
155-
// g3-add: broken HTTPS hostname verification
156156
connection.setConnectTimeout(0);
157157
connection.setReadTimeout(1000);
158158

0 commit comments

Comments
 (0)