Skip to content

Commit c105709

Browse files
committed
remove leapmotion2
1 parent 0c052dd commit c105709

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/test/java/org/myrobotlab/service/ServiceInterfaceTest.java

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ private boolean serviceHasWebPage(String service) {
5656

5757
private boolean serviceInterfaceTest(String service) throws IOException {
5858
// see if we can start/stop and release the service.
59-
59+
6060
// set a configuration path
6161
Runtime.setConfig("serviceInterfaceTest");
6262

@@ -67,7 +67,7 @@ private boolean serviceInterfaceTest(String service) throws IOException {
6767
}
6868
System.out.println("Service Test:" + service);
6969

70-
if (service.equals("As5048AEncoder")){
70+
if (service.equals("As5048AEncoder")) {
7171
log.info("here");
7272
}
7373

@@ -85,7 +85,7 @@ private boolean serviceInterfaceTest(String service) throws IOException {
8585
foo.startService();
8686
foo.save();
8787
// foo.load(); SHOULD NOT BE USED !
88-
// foo.apply(); <- THIS SHOULD BE IMPLEMENTED
88+
// foo.apply(); <- THIS SHOULD BE IMPLEMENTED
8989
foo.stopService();
9090

9191
foo.releaseService();
@@ -103,16 +103,17 @@ public final void testAllServices() throws ClassNotFoundException, IOException {
103103
ArrayList<String> servicesNotInServiceDataJson = new ArrayList<String>();
104104

105105
HashSet<String> blacklist = new HashSet<String>();
106-
blacklist.add("OpenNi");
107-
blacklist.add("As5048AEncoder");
108-
blacklist.add("IntegratedMovement");
106+
blacklist.add("OpenNi");
107+
blacklist.add("As5048AEncoder");
108+
blacklist.add("IntegratedMovement");
109109
blacklist.add("VirtualDevice");
110110
blacklist.add("Joystick");
111111
blacklist.add("GoogleAssistant");
112112
blacklist.add("LeapMotion");
113113
blacklist.add("Python"); // python's interpreter cannot be restarted cleanly
114114
blacklist.add("Runtime");
115115
blacklist.add("OpenCV");
116+
blacklist.add("LeapMotion2");
116117
blacklist.add("InMoov2");
117118
blacklist.add("WorkE");
118119
blacklist.add("JMonkeyEngine");
@@ -164,7 +165,7 @@ public final void testAllServices() throws ClassNotFoundException, IOException {
164165
continue;
165166
}
166167
// log.info("Testing Service: {}", service);
167-
168+
168169
System.out.println("testing " + service);
169170

170171
MetaData st = ServiceData.getMetaData("org.myrobotlab.service." + service);

0 commit comments

Comments
 (0)