Skip to content

Commit

Permalink
Restored correct expected file length with consistent results now.
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Chicoine committed Oct 24, 2023
1 parent 7fdb808 commit 97fa1f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public void TestExtractMatBundleWithDirectoryAndSubDirectories() throws IOExcept
operation.execute(new String[]{"-ExtractMATBundle", resourceUrl.getFile(), "-dir", "-op=" + emptyDir.getAbsolutePath()});
File[] files = emptyDir.listFiles();
assertNotNull(files);
assertTrue(files.length >= 40);
assertEquals(41, files.length);
}

@Test
Expand Down

0 comments on commit 97fa1f6

Please sign in to comment.