replacing myfoos URLs

This commit is contained in:
eugenp 2017-06-17 19:48:08 +03:00
parent 5a5f3fa459
commit 4ca15c909e
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ public class RestTemplateBasicLiveTest {
private RestTemplate restTemplate;
private static final String fooResourceUrl = String.format("http://localhost:%d/spring-rest/myfoos", 8082);
private static final String fooResourceUrl = String.format("http://localhost:%d/spring-rest/foos", 8082);
@Before
public void beforeTest() {

View File

@ -20,7 +20,7 @@ public class TestRestTemplateBasicLiveTest {
private RestTemplate restTemplate;
private static final String FOO_RESOURCE_URL = "http://localhost:" + 8082 + "/spring-rest/myfoos";
private static final String FOO_RESOURCE_URL = "http://localhost:" + 8082 + "/spring-rest/foos";
private static final String URL_SECURED_BY_AUTHENTICATION = "http://httpbin.org/basic-auth/user/passwd";
private static final String BASE_URL = "http://localhost:" + 8082 + "/spring-rest";