commit | 6592737cbfaae0111ae25cb38eb10058e1539040 | [log] [tgz] |
---|---|---|
author | Clement Escoffier <clement@apache.org> | Wed May 01 09:06:37 2013 +0000 |
committer | Clement Escoffier <clement@apache.org> | Wed May 01 09:06:37 2013 +0000 |
tree | 9560beecc793c0ce1af52d883a21a71b7bc09308 | |
parent | e04962599b9fc9f666c4a3d8ef334e58e7528644 [diff] |
Increase stability threshold git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1477937 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/manipulator/manipulator-it/src/it/online-manipulator-it/src/test/java/org/apache/felix/ipojo/test/online/OnlineManipulatorTest.java b/ipojo/manipulator/manipulator-it/src/it/online-manipulator-it/src/test/java/org/apache/felix/ipojo/test/online/OnlineManipulatorTest.java index b39a949..e4b3bf5 100644 --- a/ipojo/manipulator/manipulator-it/src/it/online-manipulator-it/src/test/java/org/apache/felix/ipojo/test/online/OnlineManipulatorTest.java +++ b/ipojo/manipulator/manipulator-it/src/it/online-manipulator-it/src/test/java/org/apache/felix/ipojo/test/online/OnlineManipulatorTest.java
@@ -405,7 +405,7 @@ int count = 0; while (!bundleStability && count < 500) { try { - Thread.sleep(5); + Thread.sleep(200); } catch (InterruptedException e) { // Interrupted } @@ -426,7 +426,7 @@ try { ServiceReference[] refs = context.getServiceReferences((String) null, null); count1 = refs.length; - Thread.sleep(500); + Thread.sleep(1000); refs = context.getServiceReferences((String) null, null); count2 = refs.length; serviceStability = count1 == count2;