You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: org.springframework.context/src/test/java/org/springframework/context/annotation/AnnotationProcessorPerformanceTests.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ public void testPrototypeCreationWithResourcePropertiesIsFastEnough() {
65
65
}
66
66
sw.stop();
67
67
//System.out.println(sw.getTotalTimeMillis());
68
-
assertTrue("Prototype creation took too long: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 4000);
68
+
assertTrue("Prototype creation took too long: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 5000);
69
69
}
70
70
71
71
@Test
@@ -92,7 +92,7 @@ public void testPrototypeCreationWithOverriddenResourcePropertiesIsFastEnough()
92
92
}
93
93
sw.stop();
94
94
//System.out.println(sw.getTotalTimeMillis());
95
-
assertTrue("Prototype creation took too long: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 4000);
95
+
assertTrue("Prototype creation took too long: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 5000);
96
96
}
97
97
98
98
@Test
@@ -118,7 +118,7 @@ public void testPrototypeCreationWithAutowiredPropertiesIsFastEnough() {
118
118
}
119
119
sw.stop();
120
120
//System.out.println(sw.getTotalTimeMillis());
121
-
assertTrue("Prototype creation took too long: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 4000);
121
+
assertTrue("Prototype creation took too long: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 5000);
122
122
}
123
123
124
124
@Test
@@ -145,7 +145,7 @@ public void testPrototypeCreationWithOverriddenAutowiredPropertiesIsFastEnough()
145
145
}
146
146
sw.stop();
147
147
//System.out.println(sw.getTotalTimeMillis());
148
-
assertTrue("Prototype creation took too long: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 4000);
148
+
assertTrue("Prototype creation took too long: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 5000);
0 commit comments