From 639b2cb12ef7e7ed60ffca68075d9b8859e1c307 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 20 Nov 2013 22:05:34 -0800 Subject: [PATCH] Increase performance test timeout --- .../context/annotation/AnnotationProcessorPerformanceTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-context/src/test/java/org/springframework/context/annotation/AnnotationProcessorPerformanceTests.java b/spring-context/src/test/java/org/springframework/context/annotation/AnnotationProcessorPerformanceTests.java index 578748f4fd..f1e5406abd 100644 --- a/spring-context/src/test/java/org/springframework/context/annotation/AnnotationProcessorPerformanceTests.java +++ b/spring-context/src/test/java/org/springframework/context/annotation/AnnotationProcessorPerformanceTests.java @@ -139,7 +139,7 @@ public class AnnotationProcessorPerformanceTests { } sw.stop(); //System.out.println(sw.getTotalTimeMillis()); - assertTrue("Prototype creation took too long: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 4000); + assertTrue("Prototype creation took too long: " + sw.getTotalTimeMillis(), sw.getTotalTimeMillis() < 4500); }