Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ allprojects {
}

jacoco {
toolVersion = '0.8.0'
toolVersion = '0.8.7'
}
}

Expand Down
4 changes: 4 additions & 0 deletions core-httpclient-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ dependencies {

compile group: 'org.apache.httpcomponents', name: 'httpclient', version: httpClientVersion
}

task exhaustiveTest {
dependsOn('test')
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ public class OptimizelyHttpClientTest {
@Before
public void setUp() {
System.setProperty("https.proxyHost", "localhost");
// default port (80) returns 404 instead of HttpHostConnectException
System.setProperty("https.proxyPort", "12345");
}

@After
Expand Down