Skip to content

Commit

Permalink
test/wip: TestExportImports remove sleeps
Browse files Browse the repository at this point in the history
* to try to cause intermittent failures again
  • Loading branch information
bogovicj committed Oct 4, 2024
1 parent 2304223 commit 13fd5b2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public void testReadWriteParse() throws InterruptedException
final String dataset = datasetBase;

singleReadWriteParseTest( imp, n5RootPath, dataset, blockSizeString, metatype, compressionString, true );
Thread.sleep(25);
// Thread.sleep(25);
}
}
}
Expand Down Expand Up @@ -293,7 +293,7 @@ else if (metadataType.equals(N5Importer.MetadataOmeZarrKey) || metadataType.equa
else
assertTrue("n5 or zarr root is not a directory:" + outputPath, n5RootWritten.isDirectory());

Thread.sleep(25);
// Thread.sleep(25);
final N5Importer reader = new N5Importer();
reader.setShow( false );
final List< ImagePlus > impList = reader.process( n5PathAndDataset, false );
Expand Down Expand Up @@ -605,7 +605,7 @@ public void testMultiChannelHelper( final String metatype, final String suffix )
final String n5RootPath = baseDir + "/test_" + metatype + "_" + dimCode + suffix;
final String dataset = String.format("/%s", dimCode);
singleReadWriteParseTest( imp, n5RootPath, dataset, blockSizeString, metatype, compressionString, true, nc == 1 );
Thread.sleep(25);
// Thread.sleep(25);
}
}
}
Expand Down

0 comments on commit 13fd5b2

Please sign in to comment.