From 7f9da0b24d079167aa6ac15c05448786cd621d9e Mon Sep 17 00:00:00 2001 From: Ulrik Sandberg Date: Tue, 3 Jun 2008 10:25:14 +0000 Subject: [PATCH] Decreased DN parse load test to 1800. Apparently 2000 was too much for some machines. --- .../org/springframework/ldap/core/DnParsePerformanceITest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mvn-build/integration-tests/core-integration-tests/src/test/java/org/springframework/ldap/core/DnParsePerformanceITest.java b/mvn-build/integration-tests/core-integration-tests/src/test/java/org/springframework/ldap/core/DnParsePerformanceITest.java index 6a31ff76..6573942e 100644 --- a/mvn-build/integration-tests/core-integration-tests/src/test/java/org/springframework/ldap/core/DnParsePerformanceITest.java +++ b/mvn-build/integration-tests/core-integration-tests/src/test/java/org/springframework/ldap/core/DnParsePerformanceITest.java @@ -55,7 +55,7 @@ public class DnParsePerformanceITest extends TestCase { } public static Test suite() { - int users = 2000; + int users = 1800; Test testCase = new DnParsePerformanceITest("testContains"); Test loadTest = new LoadTest(testCase, users); return loadTest;