Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2017-09-18 13:02:03 +0000
committerThomas Watson2017-09-18 13:02:03 +0000
commit7e715abdab9180691657ceb0e0017ca86bdef937 (patch)
tree79b7bf47f1607244079044b102bf9cb21339717d
parentbb75bf720ddc507780a9051e00afd262db854310 (diff)
downloadrt.equinox.framework-7e715abdab9180691657ceb0e0017ca86bdef937.tar.gz
rt.equinox.framework-7e715abdab9180691657ceb0e0017ca86bdef937.tar.xz
rt.equinox.framework-7e715abdab9180691657ceb0e0017ca86bdef937.zip
Bug 522430 - ClassLoadingBundleTests.testContextFinderEmptyGetResources
is failing on ep48I-unit-cen64-gtk3 Change test to use a different port from 8888
-rw-r--r--bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/ClassLoadingBundleTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/ClassLoadingBundleTests.java b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/ClassLoadingBundleTests.java
index 1acbfb4a1..2ead72f16 100644
--- a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/ClassLoadingBundleTests.java
+++ b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/ClassLoadingBundleTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2016 IBM Corporation and others.
+ * Copyright (c) 2006, 2017 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -1739,7 +1739,7 @@ public class ClassLoadingBundleTests extends AbstractBundleTests {
try {
pool = Executors.newFixedThreadPool(3);
- final String address = "http://localhost:8888/service";
+ final String address = "http://localhost:23512/service";
final WebService annotation = TestService.class.getAnnotation(WebService.class);
final String namespaceURI = annotation.serviceName();

Back to the top