Description: solving a mismatch in data providers, as an integer (10) is
 provided although a long is expected
Author: Pierre Gruet <pgt@debian.org>
Forwarded: https://github.com/broadinstitute/http-nio/issues/7
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
@@ -158,7 +158,7 @@
                 .map(data -> (String) data[0]).map(fileName ->
                         new Object[]{
                                 getGithubPagesFileUri(fileName), // URL
-                                10,                              // position to seek
+                                10L,                              // position to seek
                                 getLocalDocsFilePath(fileName)   // local file
                         }).iterator();
     }
