summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2012-03-08 16:47:44 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2012-03-08 16:47:44 +0000
commit37e2c54240959344caffca285b05f216033a4b33 (patch)
treed335deccaf0766597a374c56a6a6079a19e6d728 /sca-java-2.x
parent61d713f05fa632b03c3ec38ca224e28de5f0ffd8 (diff)
Change HTTPS to HTTP in this test case. This fails for me in some circumstances with an invalid certificate error and I don't believe there is any reason this test has to use HTTPS.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1298468 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x')
-rw-r--r--sca-java-2.x/trunk/modules/domain-node/src/test/java/org/apache/tuscany/sca/impl/Node2TestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sca-java-2.x/trunk/modules/domain-node/src/test/java/org/apache/tuscany/sca/impl/Node2TestCase.java b/sca-java-2.x/trunk/modules/domain-node/src/test/java/org/apache/tuscany/sca/impl/Node2TestCase.java
index b8d2f6b165..04dca98062 100644
--- a/sca-java-2.x/trunk/modules/domain-node/src/test/java/org/apache/tuscany/sca/impl/Node2TestCase.java
+++ b/sca-java-2.x/trunk/modules/domain-node/src/test/java/org/apache/tuscany/sca/impl/Node2TestCase.java
@@ -56,7 +56,7 @@ public class Node2TestCase {
@Test
public void remoteInstall() throws NoSuchServiceException, NoSuchDomainException, ContributionReadException, ActivationException, ValidationException {
Node node = TuscanyRuntime.newInstance().createNode("ImportTestCase");
- node.installContribution("https://repository.apache.org/content/groups/snapshots/org/apache/tuscany/sca/samples/helloworld/2.0-SNAPSHOT/helloworld-2.0-SNAPSHOT.jar");
+ node.installContribution("http://repository.apache.org/content/groups/snapshots/org/apache/tuscany/sca/samples/helloworld/2.0-SNAPSHOT/helloworld-2.0-SNAPSHOT.jar");
Assert.assertEquals(1, node.getInstalledContributionURIs().size());
Assert.assertEquals("helloworld", node.getInstalledContributionURIs().get(0));
@@ -70,7 +70,7 @@ public class Node2TestCase {
TuscanyRuntime runtime = TuscanyRuntime.newInstance();
try {
Node nodeA = runtime.createNode("uri:DistributedInstall");
- nodeA.installContribution("https://repository.apache.org/content/groups/snapshots/org/apache/tuscany/sca/samples/helloworld/2.0-SNAPSHOT/helloworld-2.0-SNAPSHOT.jar");
+ nodeA.installContribution("http://repository.apache.org/content/groups/snapshots/org/apache/tuscany/sca/samples/helloworld/2.0-SNAPSHOT/helloworld-2.0-SNAPSHOT.jar");
nodeA.installContribution("src/test/resources/export.jar");
Assert.assertEquals(2, nodeA.getInstalledContributionURIs().size());