Skip to content

Commit 289ffee

Browse files
committed
fix: increase timeout for downloading ELN file in ElnFileFormatTest
Let's give the CI a bit more time.
1 parent d3336ff commit 289ffee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/edu/kit/datamanager/ro_crate/reader/ElnFileFormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ default void testReadElnCrates(String urlStr, @TempDir Path tmp) throws IOExcept
5757
// Download the ELN file
5858
URL url = URI.create(urlStr).toURL();
5959
Path elnFile = tmp.resolve("downloaded.eln");
60-
FileUtils.copyURLToFile(url, elnFile.toFile(), 10000, 10000);
60+
FileUtils.copyURLToFile(url, elnFile.toFile(), 20000, 20000);
6161
assertTrue(elnFile.toFile().exists());
6262

6363
if (!isInBlacklist(urlStr)) {

0 commit comments

Comments
 (0)