Merge pull request #1643 from OpenRefine/thadguidry-patch-DataExtensionTests
Increasing to 10 second sleep because of Travis
This commit is contained in:
commit
dc6573d17b
@ -144,8 +144,8 @@ public class DataExtensionTests extends RefineTest {
|
|||||||
process.startPerforming(pm);
|
process.startPerforming(pm);
|
||||||
Assert.assertTrue(process.isRunning());
|
Assert.assertTrue(process.isRunning());
|
||||||
try {
|
try {
|
||||||
// We have 4 rows so 4000 ms should be largely enough.
|
// This is 10 seconds because for some reason running this test on Travis takes longer.
|
||||||
Thread.sleep(5000);
|
Thread.sleep(10000);
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
Assert.fail("Test interrupted");
|
Assert.fail("Test interrupted");
|
||||||
}
|
}
|
||||||
@ -181,7 +181,8 @@ public class DataExtensionTests extends RefineTest {
|
|||||||
process.startPerforming(pm);
|
process.startPerforming(pm);
|
||||||
Assert.assertTrue(process.isRunning());
|
Assert.assertTrue(process.isRunning());
|
||||||
try {
|
try {
|
||||||
Thread.sleep(5000);
|
// This is 10 seconds because for some reason running this test on Travis takes longer.
|
||||||
|
Thread.sleep(10000);
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
Assert.fail("Test interrupted");
|
Assert.fail("Test interrupted");
|
||||||
}
|
}
|
||||||
@ -214,7 +215,8 @@ public class DataExtensionTests extends RefineTest {
|
|||||||
process.startPerforming(pm);
|
process.startPerforming(pm);
|
||||||
Assert.assertTrue(process.isRunning());
|
Assert.assertTrue(process.isRunning());
|
||||||
try {
|
try {
|
||||||
Thread.sleep(5000);
|
// This is 10 seconds because for some reason running this test on Travis takes longer.
|
||||||
|
Thread.sleep(10000);
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
Assert.fail("Test interrupted");
|
Assert.fail("Test interrupted");
|
||||||
}
|
}
|
||||||
@ -253,7 +255,8 @@ public class DataExtensionTests extends RefineTest {
|
|||||||
process.startPerforming(pm);
|
process.startPerforming(pm);
|
||||||
Assert.assertTrue(process.isRunning());
|
Assert.assertTrue(process.isRunning());
|
||||||
try {
|
try {
|
||||||
Thread.sleep(5000);
|
// This is 10 seconds because for some reason running this test on Travis takes longer.
|
||||||
|
Thread.sleep(10000);
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
Assert.fail("Test interrupted");
|
Assert.fail("Test interrupted");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user