ARTEMIS-1345 Making TestProperties a little easier on slow CIs
using less iterations, making it less risky on slow hypervisors
This commit is contained in:
parent
c85f0f3831
commit
9ae059baeb
|
@ -279,7 +279,7 @@ public class TypedPropertiesTest {
|
|||
}
|
||||
};
|
||||
t.start();
|
||||
for (int i = 0; !error.get() && (i < 100 || copies.get() < 5000); i++) {
|
||||
for (int i = 0; !error.get() && (i < 100 || copies.get() < 50); i++) {
|
||||
properties.putIntProperty(SimpleString.toSimpleString("key" + i), i);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue