diff --git a/b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/pom.xml b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/pom.xml similarity index 100% rename from b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/pom.xml rename to tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/pom.xml diff --git a/b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/build.properties b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/build.properties similarity index 100% rename from b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/build.properties rename to tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/build.properties diff --git a/b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/extra.txt b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/extra.txt similarity index 100% rename from b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/extra.txt rename to tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/extra.txt diff --git a/b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/feature.xml b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/feature.xml similarity index 100% rename from b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/feature.xml rename to tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/feature.xml diff --git a/b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/pom.xml b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/pom.xml similarity index 100% rename from b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/pom.xml rename to tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.feature/pom.xml diff --git a/b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.product/category.xml b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.product/category.xml similarity index 100% rename from b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.product/category.xml rename to tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.product/category.xml diff --git a/b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.product/pom.xml b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.product/pom.xml similarity index 100% rename from b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.product/pom.xml rename to tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.product/pom.xml diff --git a/b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.product/test.product b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.product/test.product similarity index 100% rename from b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.product/test.product rename to tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.product/test.product diff --git a/b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.target/pom.xml b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.target/pom.xml similarity index 100% rename from b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.target/pom.xml rename to tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.target/pom.xml diff --git a/b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.target/test.target b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.target/test.target similarity index 100% rename from b/tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.target/test.target rename to tycho-its/projects/p2Repository.downloadVerifyNoDigestAlgo/test.target/test.target diff --git a/b/tycho-its/src/test/java/org/eclipse/tycho/test/p2Repository/DownloadVerifyNoDigestAlgo.java b/tycho-its/src/test/java/org/eclipse/tycho/test/p2Repository/DownloadVerifyNoDigestAlgoTest.java similarity index 87% rename from b/tycho-its/src/test/java/org/eclipse/tycho/test/p2Repository/DownloadVerifyNoDigestAlgo.java rename to tycho-its/src/test/java/org/eclipse/tycho/test/p2Repository/DownloadVerifyNoDigestAlgoTest.java index d469347161..ab7ba6f400 100644 --- a/b/tycho-its/src/test/java/org/eclipse/tycho/test/p2Repository/DownloadVerifyNoDigestAlgo.java +++ b/tycho-its/src/test/java/org/eclipse/tycho/test/p2Repository/DownloadVerifyNoDigestAlgoTest.java @@ -21,13 +21,13 @@ public class DownloadVerifyNoDigestAlgoTest extends AbstractTychoIntegrationTest throws IOException { - @Test - public void test() throws Exception { - Verifier verifier = getVerifier("p2Repository.downloadVerifyNoDigestAlgo", false); + @Test + public void test() throws Exception { + Verifier verifier = getVerifier("p2Repository.downloadVerifyNoDigestAlgo", false); verifier.setLogFileName("p2Repository.downloadVerifyNoDigestAlgo.log"); verifier.executeGoals(asList("verify")); verifier.verifyErrorFreeLog(); String logContents = Files.readString(Paths.get("p2Repository.downloadVerifyNoDigestAlgo.log")); assertFalse(logContents.contains("No digest algorithm is available to verify download")); - } + } }