8000 is a very busy port. time to move it

This commit is contained in:
Greg Gauthier 2023-07-18 16:08:51 +01:00
parent 1d7e77b37f
commit 74bab55eda
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import java.net.http.HttpResponse;
public class CalculatorClient {
private String DEFAULT_ROOT_URL = "http://localhost:8000";
private String DEFAULT_ROOT_URL = "http://localhost:9090";
static HttpClient httpClient;
public CalculatorClient() {

View File

@ -21,7 +21,7 @@ import static org.junit.Assert.assertEquals;
public class CalculatorClientTests {
@Rule
public WireMockRule wireMockRule = new WireMockRule(8000);
public WireMockRule wireMockRule = new WireMockRule(9090);
//public WireMockServer wms = new WireMockServer(9999);
@Before