Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Bull2013-03-14 21:29:40 +0000
committerIan Bull2013-03-14 21:29:40 +0000
commit420fa8592490d6f873111b7ad7931b5ce941532f (patch)
tree9c8a71d961fa841bbd12bbd7a8d161bbeda0bcc6
parent8f0bc15dea0bf124b1f56e7da8a64de010c7e285 (diff)
downloadrt.equinox.p2-420fa8592490d6f873111b7ad7931b5ce941532f.tar.gz
rt.equinox.p2-420fa8592490d6f873111b7ad7931b5ce941532f.tar.xz
rt.equinox.p2-420fa8592490d6f873111b7ad7931b5ce941532f.zip
Fix for transfer tests
We were looking for a specific ECF bundle name which changed when HttpClient 4 was used. This fix updates the test to reflect that.
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/artifact/repository/TransferTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/artifact/repository/TransferTest.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/artifact/repository/TransferTest.java
index b8ff6b22a..73b93f1ec 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/artifact/repository/TransferTest.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/artifact/repository/TransferTest.java
@@ -48,7 +48,7 @@ public class TransferTest extends AbstractProvisioningTest {
try {
fos.close();
if (f != null) {
- String[] ecfPlugins = new String[] {"org.eclipse.ecf", "org.eclipse.ecf.identity", "org.eclipse.ecf.filetransfer", "org.eclipse.ecf.provider.filetransfer", "org.eclipse.ecf.provider.filetransfer.httpclient"};
+ String[] ecfPlugins = new String[] {"org.eclipse.ecf", "org.eclipse.ecf.identity", "org.eclipse.ecf.filetransfer", "org.eclipse.ecf.provider.filetransfer", "org.eclipse.ecf.provider.filetransfer.httpclient4"};
StringBuffer buffer = new StringBuffer();
for (int i = 0; i < ecfPlugins.length; i++) {
Bundle bundle = Platform.getBundle(ecfPlugins[i]);

Back to the top