Skip to content

Commit 81d3f79

Browse files
authored
Build error resolved (#357)
1 parent 9460c66 commit 81d3f79

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

modules/virtualan-plugin/src/main/resources/META-INF/resources/static/js/controller/swagger_controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ myApp.controller('SwaggerController', [ '$scope', '$window','MockService',
88
self.catalogName = '';
99

1010
self.openSwaggerCatalog = function() {
11-
loadUrl("swagger-ui/index.html");
11+
loadUrl("swagger-ui.html");
1212
};
1313
self.openSwaggerUI = function() {
1414
loadUrl("swagger-ui/index.html");

modules/virtualization/src/main/resources/META-INF/resources/static/js/controller/swagger_controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ myApp.controller('SwaggerController', [ '$scope', '$window','MockService',
88
self.catalogName = '';
99

1010
self.openSwaggerCatalog = function() {
11-
loadUrl("swagger-ui/index.html");
11+
loadUrl("swagger-ui.html");
1212
};
1313
self.openSwaggerUI = function() {
1414
loadUrl("swagger-ui/index.html");

samples/virtualan-sv-all/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
<dependency>
188188
<groupId>org.springframework.boot</groupId>
189189
<artifactId>spring-boot-starter-web</artifactId>
190-
<version>2.6.0</version>
190+
<version>2.5.10</version>
191191
</dependency>
192192

193193

@@ -225,7 +225,7 @@
225225
</exclusion>
226226
</exclusions>
227227
<groupId>org.springframework.boot</groupId>
228-
<version>2.6.3</version>
228+
<version>2.5.10</version>
229229
</dependency>
230230

231231
<dependency>
@@ -268,7 +268,7 @@
268268
<dependency>
269269
<groupId>org.springframework.kafka</groupId>
270270
<artifactId>spring-kafka-test</artifactId>
271-
<version>2.8.0</version>
271+
<version>2.7.4</version>
272272
</dependency>
273273

274274

@@ -302,7 +302,7 @@
302302
<dependency>
303303
<groupId>io.virtualan</groupId>
304304
<artifactId>idaithalam</artifactId>
305-
<version>1.4.4</version>
305+
<version>1.6.2</version>
306306
</dependency>
307307

308308
</dependencies>

samples/virtualan-sv-all/src/test/java/io/virtualan/BDDAPIE2EWithLowcodeIntegrationTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ public void executeEnd2EndTesting() throws InterruptedException {
3939
try {
4040

4141
boolean isSuccess = VirtualanTestPlanExecutor.invoke("apiexecution.yaml");
42-
if (!isSuccess) {
42+
if (isSuccess) {
43+
Assert.assertTrue("Successfully executed all the integration testcases", true);
44+
} else {
4345
Assert.assertTrue("Integration testcases are Failed", false);
4446
}
45-
Assert.assertTrue("Successfully executed all the integration testcases",true);
46-
4747
} catch (InterruptedException e) {
4848
e.printStackTrace();
4949
Assert.assertTrue("Integration testcases are Failed > " + e.getMessage(), false);

samples/virtualan-sv-all/src/test/resources/apiexecution.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ apiExecutor:
77
inputExcel: virtualan_bdd_testcase_run_manager_1.xlsx
88
cucumblanProperties:
99
service.api.api: http://localhost:8800
10-
service.api.virtualservices: http://localhost:8800
1110
# - reportTitle: "Integration testcase with env live.virtualandemo.com"
1211
# env: live.virtualandemo
1312
# outputDir: target/pet/live
Binary file not shown.

0 commit comments

Comments
 (0)