Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added check for test.port system property
  • Loading branch information
fasseg committed Jun 3, 2013
1 parent bf98a04 commit eaa67db
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -34,7 +34,7 @@ public class FedoraFixityClientIT{

private final FedoraFixityClient fixityClient = new FedoraFixityClient();

private static final String serverAddress = "http://localhost:8080/";
private final String serverAddress = "http://localhost:" + (System.getProperty("test.port") != null ? System.getProperty("test.port") : 8080) + "/";

private final HttpClient httpClient = new DefaultHttpClient();

Expand Down

0 comments on commit eaa67db

Please sign in to comment.