Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Houghton2010-03-23 20:21:41 +0000
committerDJ Houghton2010-03-23 20:21:41 +0000
commit697d4fb153466f6b59955355c66d21d529e0f4c4 (patch)
tree3d23a8bb8fda8cb10f9c0b39dad363ad0d2cc302
parent01a8019d71bc7bb1f7c5f1518404cecd9b9515da (diff)
downloadrt.equinox.p2-697d4fb153466f6b59955355c66d21d529e0f4c4.tar.gz
rt.equinox.p2-697d4fb153466f6b59955355c66d21d529e0f4c4.tar.xz
rt.equinox.p2-697d4fb153466f6b59955355c66d21d529e0f4c4.zip
Updated URL for plug-in retrieval from update site.v20100323-1620
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/artifact/repository/TransferTest.java4
1 files changed, 2 insertions, 2 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 0a8aa1a89..91b1bdb4c 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
@@ -21,13 +21,13 @@ public class TransferTest extends AbstractProvisioningTest {
} catch (BundleException e) {
fail("1.5", e);
}
- IStatus s = ECFTransport.getInstance().download("http://download.eclipse.org/eclipse/updates/3.5-I-builds/plugins/javax.servlet.jsp_2.0.0.v200806031607.jar.pack.gz", fos, new NullProgressMonitor());
+ IStatus s = ECFTransport.getInstance().download("http://download.eclipse.org/eclipse/updates/3.4.x/plugins/javax.servlet_2.5.0.v200806031605.jar.pack.gz", fos, new NullProgressMonitor());
assertOK("2.0", s);
try {
fos.close();
if (f != null) {
System.out.println(f.length());
- assertTrue("4.0", f.length() < 50000);
+ assertTrue("4.0", f.length() < 75000);
}
} catch (IOException e) {
fail("5.0", e);

Back to the top