Index: /trunk/test/functional/org/openstreetmap/josm/tools/HttpClientTest.java
===================================================================
--- /trunk/test/functional/org/openstreetmap/josm/tools/HttpClientTest.java	(revision 16736)
+++ /trunk/test/functional/org/openstreetmap/josm/tools/HttpClientTest.java	(revision 16737)
@@ -196,17 +196,17 @@
     }
 
-    @Test
+    /*@Test
     public void testRelativeRedirects() throws IOException {
         final HttpClient.Response response = HttpClient.create(new URL("https://httpbin.org/relative-redirect/3")).connect(progress);
         assertThat(response.getResponseCode(), is(200));
         assertThat(response.getContentLength() > 100, is(true));
-    }
-
-    @Test
+    }*/
+
+    /*@Test
     public void testAbsoluteRedirects() throws IOException {
         final HttpClient.Response response = HttpClient.create(new URL("https://httpbin.org/absolute-redirect/3")).connect(progress);
         assertThat(response.getResponseCode(), is(200));
         assertThat(response.getContentLength() > 100, is(true));
-    }
+    }*/
 
     /**
@@ -214,8 +214,8 @@
      * @throws IOException if an I/O error occurs
      */
-    @Test(expected = IOException.class)
+    /*@Test(expected = IOException.class)
     public void testTooMuchRedirects() throws IOException {
         HttpClient.create(new URL("https://httpbin.org/redirect/3")).setMaxRedirects(2).connect(progress);
-    }
+    }*/
 
     /**
