From 39c460c0c620cafa98f9a8b99aa6a8f809993fb7 Mon Sep 17 00:00:00 2001 From: mishako Date: Wed, 4 Jan 2017 13:07:24 +0100 Subject: [PATCH] Fix osgi test for rome fetcher (#322) The test is fragile, but there is no point in improving it since fetcher is deprecated anyway. --- .../src/test/java/com/rometools/rome/osgi/FetcherIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rome-osgi-test/src/test/java/com/rometools/rome/osgi/FetcherIT.java b/rome-osgi-test/src/test/java/com/rometools/rome/osgi/FetcherIT.java index 3f01375..3914aef 100644 --- a/rome-osgi-test/src/test/java/com/rometools/rome/osgi/FetcherIT.java +++ b/rome-osgi-test/src/test/java/com/rometools/rome/osgi/FetcherIT.java @@ -32,7 +32,7 @@ public class FetcherIT { public void test() throws Exception { FeedFetcherCache cache = HashMapFeedInfoCache.getInstance(); FeedFetcher fetcher = new HttpURLFeedFetcher(cache); - SyndFeed feed = fetcher.retrieveFeed(new URL("http://www.w3.org/blog/news/feed/atom")); + SyndFeed feed = fetcher.retrieveFeed(new URL("https://www.w3.org/blog/news/feed/atom")); assertEquals("W3C News", feed.getTitle()); }