Skip to content

Commit f0aec91

Browse files
Add change markers for ease of syncing in HttpsUrlConnectionTest (#1456)
* Add change markers for ease of syncing in HttpsUrlConnectionTest * Fix import ordering
1 parent 799ca89 commit f0aec91

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

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

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,32 @@
2020
import static org.junit.Assert.assertNotNull;
2121
import static org.junit.Assert.assertSame;
2222
import static org.junit.Assert.assertTrue;
23+
// g3-add: import static org.junit.Assume.assumeFalse;
2324
import static org.junit.Assert.fail;
2425

26+
import org.conscrypt.TestUtils;
27+
import org.conscrypt.VeryBasicHttpServer;
28+
import org.junit.After;
29+
import org.junit.Test;
30+
import org.junit.runner.RunWith;
31+
import org.junit.runners.JUnit4;
32+
2533
import java.io.IOException;
2634
import java.net.InetAddress;
2735
import java.net.Socket;
2836
import java.net.SocketException;
2937
import java.net.SocketTimeoutException;
3038
import java.net.URL;
39+
// g3-add: import java.util.concurrent.ExecutionException;
3140
import java.util.concurrent.ExecutorService;
3241
import java.util.concurrent.Executors;
3342
import java.util.concurrent.Future;
3443
import java.util.concurrent.TimeUnit;
44+
3545
import javax.net.ssl.HostnameVerifier;
3646
import javax.net.ssl.HttpsURLConnection;
3747
import javax.net.ssl.SSLSession;
3848
import javax.net.ssl.SSLSocketFactory;
39-
import org.conscrypt.TestUtils;
40-
import org.conscrypt.VeryBasicHttpServer;
41-
import org.junit.After;
42-
import org.junit.Test;
43-
import org.junit.runner.RunWith;
44-
import org.junit.runners.JUnit4;
4549

4650
@RunWith(JUnit4.class)
4751
public class HttpsURLConnectionTest {

0 commit comments

Comments
 (0)