Fixed the Integration Build Pipeline
This commit is contained in:
+4
-4
@@ -30,7 +30,7 @@ class OpenApiJwtIntegrationTest
|
||||
{
|
||||
assertNotNull(authenticationApi);
|
||||
|
||||
String response = this.restTemplate.getForObject("http://localhost:" + port + "/swagger-ui.html", String.class);
|
||||
String response = this.restTemplate.getForObject("http://localhost:" + port + "/swagger-ui/index.html", String.class);
|
||||
|
||||
assertNotNull(response);
|
||||
assertTrue(response.contains("Swagger UI"));
|
||||
@@ -43,7 +43,7 @@ class OpenApiJwtIntegrationTest
|
||||
{
|
||||
assertNotNull(authenticationApi);
|
||||
|
||||
ResponseEntity<String> response = this.restTemplate.getForEntity("http://localhost:" + port + "/v3/api-docs",
|
||||
ResponseEntity<String> response = this.restTemplate.getForEntity("http://localhost:" + port + "/api-docs",
|
||||
String.class);
|
||||
|
||||
assertNotNull(response);
|
||||
@@ -59,7 +59,7 @@ class OpenApiJwtIntegrationTest
|
||||
{
|
||||
assertNotNull(authenticationApi);
|
||||
|
||||
ResponseEntity<String> response = this.restTemplate.getForEntity("http://localhost:" + port + "/v3/api-docs",
|
||||
ResponseEntity<String> response = this.restTemplate.getForEntity("http://localhost:" + port + "/api-docs",
|
||||
String.class);
|
||||
|
||||
assertNotNull(response);
|
||||
@@ -75,7 +75,7 @@ class OpenApiJwtIntegrationTest
|
||||
{
|
||||
assertNotNull(authenticationApi);
|
||||
|
||||
ResponseEntity<String> response = this.restTemplate.getForEntity("http://localhost:" + port + "/v3/api-docs",
|
||||
ResponseEntity<String> response = this.restTemplate.getForEntity("http://localhost:" + port + "/api-docs",
|
||||
String.class);
|
||||
|
||||
assertNotNull(response);
|
||||
|
||||
Reference in New Issue
Block a user