summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java')
-rw-r--r--sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java b/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java
index 0f03a4b47d..d983c25b61 100644
--- a/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java
+++ b/sca-java-2.x/trunk/samples/getting-started/helloworld-scaclient/src/test/java/sample/HelloworldTestCase.java
@@ -42,7 +42,8 @@ public class HelloworldTestCase {
@BeforeClass
public static void start() throws ContributionReadException, ActivationException, ValidationException {
node = TuscanyRuntime.newInstance().createNode("uri:default?bind=127.0.0.1:7654");
- node.installContribution(null, "../helloworld/target/classes", null, null, true);
+ String curi = node.installContribution(null, "../helloworld/target/classes", null, null);
+ node.startDeployables(curi);
}
@AfterClass