summaryrefslogtreecommitdiffstats
path: root/java/sca/itest/nodes
diff options
context:
space:
mode:
Diffstat (limited to 'java/sca/itest/nodes')
-rw-r--r--java/sca/itest/nodes/two-nodes-test/src/test/java/itest/TwoNodesTestCase.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/java/sca/itest/nodes/two-nodes-test/src/test/java/itest/TwoNodesTestCase.java b/java/sca/itest/nodes/two-nodes-test/src/test/java/itest/TwoNodesTestCase.java
index c4584ac03d..80b71cab29 100644
--- a/java/sca/itest/nodes/two-nodes-test/src/test/java/itest/TwoNodesTestCase.java
+++ b/java/sca/itest/nodes/two-nodes-test/src/test/java/itest/TwoNodesTestCase.java
@@ -52,9 +52,6 @@ public class TwoNodesTestCase{
@Test
public void testCalculator() throws Exception {
-
- // Ideally this would use the SCAClient API but leaving that tillwe have the basics working
-
Helloworld service = serviceNode.getService(Helloworld.class, "HelloworldService");
assertNotNull(service);
assertEquals("Hello Petra", service.sayHello("Petra"));
@@ -66,8 +63,6 @@ public class TwoNodesTestCase{
@Test
public void testCalculatorClientAPI() throws Exception {
-
- // Ideally this would use the SCAClient API but leaving that tillwe have the basics working
SCAClient scaClient = SCAClientFactory.newInstance();
Helloworld service = scaClient.getService(Helloworld.class, "HelloworldService", null);
assertNotNull(service);