Description: we have removed non-free files of the testdata directory when
 repacking, so we cannot run the tests that use them
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2023-12-14

--- a/src/test/java/org/broadinstitute/http/nio/HttpSeekableByteChannelUnitTest.java
+++ b/src/test/java/org/broadinstitute/http/nio/HttpSeekableByteChannelUnitTest.java
@@ -262,7 +262,8 @@
         return new Object[][]{{100}, {1_000}, {10_000}, {100_000}, {1_000_000}};
     }
 
-    @Test(dataProvider = "stepSize")
+    //Requires data in removed dir testdata"
+    @Test(enabled = false, dataProvider = "stepSize")
     public void testDataIsConsistentForward(int stepSize) throws IOException, URISyntaxException {
         URI URI = new URI(BIG_TXT_GOOGLE);
         try (final SeekableByteChannel remote = getChannel(URI);
@@ -285,7 +286,8 @@
         };
     }
 
-    @Test(dataProvider = "steps")
+    //Requires data in removed dir testdata"
+    @Test(enabled = false, dataProvider = "steps")
     public void testDataIsConsistentWhileSeeking(List<Integer> positions) throws IOException, URISyntaxException {
         URI URI = new URI(BIG_TXT_GOOGLE);
         final int readlength = 100;
