Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2012-06-25 13:28:31 +0000
committerJohn Arthorne2012-06-25 13:28:31 +0000
commit76f10a053009d90cf9e5bff00339771db3a5252b (patch)
treeea8311c6c5c7dbbdc1cd70a4eede8260a9790156
parentdb0aa89d2eeabee4aa7aad224c773c11b3012244 (diff)
downloadrt.equinox.p2-76f10a053009d90cf9e5bff00339771db3a5252b.tar.gz
rt.equinox.p2-76f10a053009d90cf9e5bff00339771db3a5252b.tar.xz
rt.equinox.p2-76f10a053009d90cf9e5bff00339771db3a5252b.zip
Bug 382053 - SharedInstallTests fail on Windows 7
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/SharedInstallTests.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/SharedInstallTests.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/SharedInstallTests.java
index 4996d4af0..7863e3e90 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/SharedInstallTests.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/SharedInstallTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2011 IBM Corporation and others.
+ * Copyright (c) 2008, 2012 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
@@ -77,7 +77,6 @@ public class SharedInstallTests extends AbstractReconcilerTest {
readOnlyBase = new File(output, "eclipse");
assertTrue(readOnlyBase.canWrite());
setReadOnly(readOnlyBase, true);
- assertFalse(readOnlyBase.canWrite());
userBase = new File(output, "user");
userBase.mkdir();
}
@@ -135,7 +134,6 @@ public class SharedInstallTests extends AbstractReconcilerTest {
assertTrue("0.7", readOnlyBase.canWrite());
remove("1.0", "dropins", "myBundle_1.0.0.jar");
setReadOnly(readOnlyBase, true);
- assertFalse("0.7", readOnlyBase.canWrite());
reconcileReadOnly("0.21");
assertFalse(isInBundlesInfo(userBundlesInfo, "myBundle", null));

Back to the top