Increased number of attempts due to timing issues on build server.

This commit is contained in:
Mark Fisher
2007-12-28 21:46:40 +00:00
parent 17550340df
commit 618e228392

View File

@@ -39,11 +39,12 @@ public class AdapterBusTests {
context.start();
String result = null;
int attempts = 0;
while (result == null && attempts++ < 10) {
while (result == null && attempts++ < 100) {
Thread.sleep(5);
result = sink.get();
}
assertNotNull(result);
context.close();
}
}