# HG changeset patch # User chegar # Date 1529404864 -3600 # Node ID cc4918aedfe73d86f72dc6071c82dbc158ff43e7 # Parent 51005613a367eeff99d513838ebc58a486a73205 http-client-branch: review comment: reduce iterations in MappingResponseSubscribe test diff -r 51005613a367 -r cc4918aedfe7 test/jdk/java/net/httpclient/MappingResponseSubscriber.java --- a/test/jdk/java/net/httpclient/MappingResponseSubscriber.java Tue Jun 19 11:36:13 2018 +0100 +++ b/test/jdk/java/net/httpclient/MappingResponseSubscriber.java Tue Jun 19 11:41:04 2018 +0100 @@ -88,7 +88,7 @@ String https2URI_fixed; String https2URI_chunk; - 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.newCachedThreadPool();