This is an automated email from the ASF dual-hosted git repository. jaikiran pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ant-ivy.git
The following commit(s) were added to refs/heads/master by this push: new 27491e3 Use https for IvyDE updatesite test 27491e3 is described below commit 27491e3688c0f541797093cded7e0b65728983ec Author: Jaikiran Pai <jaiki...@apache.org> AuthorDate: Fri Jan 15 20:59:19 2021 +0530 Use https for IvyDE updatesite test --- test/java/org/apache/ivy/osgi/updatesite/UpdateSiteLoaderTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/java/org/apache/ivy/osgi/updatesite/UpdateSiteLoaderTest.java b/test/java/org/apache/ivy/osgi/updatesite/UpdateSiteLoaderTest.java index 163e97f..b456634 100644 --- a/test/java/org/apache/ivy/osgi/updatesite/UpdateSiteLoaderTest.java +++ b/test/java/org/apache/ivy/osgi/updatesite/UpdateSiteLoaderTest.java @@ -64,7 +64,7 @@ public class UpdateSiteLoaderTest { @Test public void testIvyDE() throws IOException, ParseException, SAXException, URISyntaxException { RepoDescriptor site = loader.load(new URI( - "http://www.apache.org/dist/ant/ivyde/updatesite/")); + "https://www.apache.org/dist/ant/ivyde/updatesite/")); assertTrue(site.getModules().hasNext()); Iterator<ModuleDescriptorWrapper> it = site.getModules(); while (it.hasNext()) {