Skip to content

Commit

Permalink
Attempting to correct test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Chicoine committed Nov 21, 2024
1 parent 1e80e64 commit e1b8576
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public void TestExtractMatBundleWithNonIGStructuredDirectory() throws IOExceptio
}

//Copy our test files to the temp folder so the source location of the bundle is the temp folder
for (File file : Objects.requireNonNull(sourceDir.listFiles())) {
for (File file : sourceDir.listFiles()) {
File destFile = new File(tempDir, file.getName());
Files.copy(file.toPath(), destFile.toPath());
}
Expand Down

0 comments on commit e1b8576

Please sign in to comment.