http-client-branch: review comment: reduce iterations in NoBody tests http-client-branch
authorchegar
Tue, 19 Jun 2018 11:36:13 +0100
branchhttp-client-branch
changeset 56774 51005613a367
parent 56773 02ab5f60fbcd
child 56775 cc4918aedfe7
http-client-branch: review comment: reduce iterations in NoBody tests
test/jdk/java/net/httpclient/AbstractNoBody.java
--- a/test/jdk/java/net/httpclient/AbstractNoBody.java	Tue Jun 19 09:50:40 2018 +0100
+++ b/test/jdk/java/net/httpclient/AbstractNoBody.java	Tue Jun 19 11:36:13 2018 +0100
@@ -57,7 +57,7 @@
     String https2URI_chunk;
 
     static final String SIMPLE_STRING = "Hello world. Goodbye world";
-    static final int ITERATION_COUNT = 10;
+    static final int ITERATION_COUNT = 3;
     // a shared executor helps reduce the amount of threads created by the test
     static final Executor executor = Executors.newFixedThreadPool(ITERATION_COUNT * 2);
     static final ExecutorService serverExecutor = Executors.newFixedThreadPool(ITERATION_COUNT * 4);