Fixing an issue with testing where the test will try to generate reports too early.

This commit is contained in:
alexjacks92 2014-04-18 11:33:56 -04:00
parent 8b398a1c1a
commit 77eeecf503

View File

@ -252,11 +252,13 @@ public class RegressionTest extends TestCase {
if (Boolean.parseBoolean(System.getProperty("ignore_unalloc"))) {
jbco0.doClick();
}
new Timeout("pausing", 10000).sleep(); // let things catch up
wo.btNext().clickMouse();
}
public void testIngest() {
logger.info("Ingest 3");
new Timeout("pausing", 10000).sleep(); // wait for ingest to actually start
long startIngest = System.currentTimeMillis();
IngestManager man = IngestManager.getInstance();
while (man.isIngestRunning()) {