Skip to content

Commit

Permalink
Minor correction to unconnectable IP address in TimeoutTest
Browse files Browse the repository at this point in the history
  • Loading branch information
jekh committed Mar 27, 2015
1 parent 352628d commit e8757c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/org/littleshoot/proxy/TimeoutTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void testConnectionTimeout() throws IOException {
final HttpHost proxy = new HttpHost("127.0.0.1", proxyServer.getListenAddress().getPort(), "http");
httpClient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy);

HttpGet get = new HttpGet("http://1.2.3.4:");
HttpGet get = new HttpGet("http://1.2.3.4:53540");

long start = System.nanoTime();
HttpResponse response = httpClient.execute(get);
Expand Down

0 comments on commit e8757c5

Please sign in to comment.