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:
Clebert Suconic 2018-03-08 10:50:52 -05:00
parent c85f0f3831
commit 9ae059baeb
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}