Skip to content

Commit caccc63

Browse files
Turn off file grouping in test step that reads converted DICOM files
This prevents test run times from depending on the contents of the temp directory. Without this change, some builds failed as the tests didn't finish.
1 parent 5a787f6 commit caccc63

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

components/formats-bsd/test/loci/formats/utests/dicom/ProvidedMetadataTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ public Path doConversion(String jsonMetadata) throws FormatException, IOExceptio
9191

9292
public List<DicomTag> getTags(Path dicomFile) throws FormatException, IOException {
9393
DicomReader reader = new DicomReader();
94+
reader.setGroupFiles(false);
9495
reader.setId(dicomFile.toString());
9596
List<DicomTag> tags = reader.getTags();
9697
reader.close();

0 commit comments

Comments
 (0)