Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon McDuff2008-09-14 01:35:38 +0000
committerSimon McDuff2008-09-14 01:35:38 +0000
commit1f712d0e57be14d482a9d27f6c6e118e5f515647 (patch)
tree16b09472b0fa19e8e2c67106fc590d5457aa272e /plugins/org.eclipse.emf.cdo.tests/src
parent40eddcc9af775de34243fe7710aba55de1252c7f (diff)
downloadcdo-1f712d0e57be14d482a9d27f6c6e118e5f515647.tar.gz
cdo-1f712d0e57be14d482a9d27f6c6e118e5f515647.tar.xz
cdo-1f712d0e57be14d482a9d27f6c6e118e5f515647.zip
Fixes for QueryTestCases
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests/src')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/QueryTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/QueryTest.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/QueryTest.java
index 8b315e25aa..afc1b4b6a4 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/QueryTest.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/QueryTest.java
@@ -103,7 +103,7 @@ public class QueryTest extends AbstractCDOTest
public void testQueryCancel_successful() throws Exception
{
- CDOTransaction transaction = initialize(100);
+ CDOTransaction transaction = initialize(500);
CDOQuery cdoQuery = transaction.createQuery(LANGUAGE, "QUERYSTRING");
cdoQuery.setParameter("sleep", 1000L);
CloseableIterator<Object> queryResult = cdoQuery.getResultAsync(Object.class);
@@ -118,7 +118,7 @@ public class QueryTest extends AbstractCDOTest
public void testQueryCancel_ViewClose() throws Exception
{
- CDOTransaction transaction = initialize(100);
+ CDOTransaction transaction = initialize(500);
CDOQuery cdoQuery = transaction.createQuery(LANGUAGE, "QUERYSTRING");
cdoQuery.setParameter("sleep", 1000L);
CloseableIterator<Object> queryResult = cdoQuery.getResultAsync(Object.class);
@@ -131,7 +131,7 @@ public class QueryTest extends AbstractCDOTest
public void testQueryCancel_SessionClose() throws Exception
{
- CDOTransaction transaction = initialize(100);
+ CDOTransaction transaction = initialize(500);
CDOQuery cdoQuery = transaction.createQuery(LANGUAGE, "QUERYSTRING");
cdoQuery.setParameter("sleep", 1000L);
CloseableIterator<Object> queryResult = cdoQuery.getResultAsync(Object.class);

Back to the top