File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
test/java/in/erail/service Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public void start() {
1919 Arrays
2020 .stream (getVerticals ())
2121 .forEach ((path ) -> {
22- AbstractVerticle av = Glue .instance ().<AbstractVerticle >resolve (path , AbstractVerticle . class );
22+ AbstractVerticle av = Glue .instance ().<AbstractVerticle >resolve (path );
2323 getVertx ().getDelegate ().deployVerticle (av , getDeploymentOptions ());
2424 });
2525 }
Original file line number Diff line number Diff line change 11package in .erail .service ;
22
33import com .google .common .net .HttpHeaders ;
4- import in .erail .common .FramworkConstants ;
54import in .erail .server .Server ;
65import in .erail .test .TestConstants ;
76import org .junit .Test ;
@@ -30,7 +29,7 @@ public void testProcess(TestContext context) {
3029
3130 Async async = context .async (2 );
3231
33- Server server = Glue .instance ().<Server >resolve ("/in/erail/server/Server" , Server . class );
32+ Server server = Glue .instance ().<Server >resolve ("/in/erail/server/Server" );
3433
3534 //API Reply
3635 server .getVertx ().eventBus ().<JsonObject >consumer ("testTopic" , (event ) -> {
You can’t perform that action at this time.
0 commit comments