Raise testPrototypeCreationWithPropertiesIsFastEnough limit to 4000 ms

This commit is contained in:
Juergen Hoeller 2018-07-19 17:51:54 +02:00
parent c4df335a1d
commit 09920d9b01
1 changed files with 1 additions and 1 deletions

View File

@ -2387,7 +2387,7 @@ public class DefaultListableBeanFactoryTests {
}
sw.stop();
// System.out.println(sw.getTotalTimeMillis());
assertTrue("Prototype creation took too long: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 3000);
assertTrue("Prototype creation took too long: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 4000);
}
@Test