reverted back AccountInfo and AccountInfoUpdateService changes

This commit is contained in:
dartpopikyardo
2016-09-02 11:53:50 +03:00
parent 47e9053285
commit dde554e442
4 changed files with 57 additions and 28 deletions

View File

@@ -111,7 +111,7 @@ public abstract class AbstractRestAPITest {
new Producer<GetAccountsResponse>() {
@Override
public CompletableFuture<GetAccountsResponse> produce() {
return CompletableFuture.completedFuture(getAuthenticatedRestTemplate().getForEntity(baseUrl("/customer/"+customerId+"/accounts"),
return CompletableFuture.completedFuture(getAuthenticatedRestTemplate().getForEntity(baseUrl("/customers/"+customerId+"/accounts"),
GetAccountsResponse.class));
}
},