Skip to content

Commit

Permalink
Correct the hard-coded URL in validateLocationUrlContents
Browse files Browse the repository at this point in the history
  • Loading branch information
starksm64 committed Sep 6, 2018
1 parent bd87958 commit cea9ea3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public static WebArchive createLocationURLDeployment() throws IOException {
@Test(groups = TEST_GROUP_CONFIG,
description = "Validate the http://localhost:8080/pem/endp/publicKey4k PEM endpoint")
public void validateLocationUrlContents() throws Exception {
URL locationURL = new URL("http://localhost:8080/pem/endp/publicKey4k");
URL locationURL = new URL(baseURL, "pem/endp/publicKey4k");
Reporter.log("Begin validateLocationUrlContents");

StringWriter content = new StringWriter();
Expand Down

0 comments on commit cea9ea3

Please sign in to comment.