Skip to content

Commit

Permalink
Fixed remaining Java tests with . in the base URI
Browse files Browse the repository at this point in the history
  • Loading branch information
Hovsep Mkrtchyan committed May 19, 2016
1 parent 191cac8 commit 7f2b179
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static void setup() {
// Positive test case
@Test
public void getEmptyWithValidCustomUri() throws Exception {
client.setHost("host.:3000");
client.setHost("host:3000");
Assert.assertTrue(client.getPathsOperations().getEmpty("local").getResponse().isSuccess());
}

Expand All @@ -49,7 +49,7 @@ public void getEmptyWithInvalidCustomUriHostName() throws Exception {
Assert.assertTrue(true);
}
finally {
client.setHost("host.:3000");
client.setHost("host:3000");
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static void setup() {
// Positive test case
@Test
public void getEmptyWithValidCustomUri() throws Exception {
client.setHost("host.:3000");
client.setHost("host:3000");
Assert.assertTrue(client.getPathsOperations().getEmpty("local").getResponse().isSuccess());
}

Expand All @@ -43,7 +43,7 @@ public void getEmptyWithInvalidCustomUriHostName() throws Exception {
Assert.assertTrue(true);
}
finally {
client.setHost("host.:3000");
client.setHost("host:3000");
}
}

Expand Down

0 comments on commit 7f2b179

Please sign in to comment.