Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/NotificationTest.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/NotificationTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/NotificationTest.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/NotificationTest.java
index 3497f2069b..ea9858c853 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/NotificationTest.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/model1/NotificationTest.java
@@ -26,7 +26,7 @@ public class NotificationTest extends AbstractModel1Test
final String RESOURCE = "/test/res";
final String ROOT = "root";
final String NEW_ROOT = "new root";
- final long TIME_LIMIT = 100;
+ final long TIME_LIMIT = 1000;
// Client1 creates resource
TreeNode root = createNode(ROOT);
@@ -60,7 +60,7 @@ public class NotificationTest extends AbstractModel1Test
final String ROOT = "root";
final String CHILD = "a";
final String NEW_NAME = "a2";
- final long TIME_LIMIT = 100;
+ final long TIME_LIMIT = 1000;
// Client1 creates resource
TreeNode root = createNode(ROOT);
@@ -96,7 +96,7 @@ public class NotificationTest extends AbstractModel1Test
final String ROOT = "root";
final String CHILD = "a";
final String NEW_NAME = "a2";
- final long TIME_LIMIT = 100;
+ final long TIME_LIMIT = 1000;
// Client1 creates resource
TreeNode root = createNode(ROOT);
@@ -133,7 +133,7 @@ public class NotificationTest extends AbstractModel1Test
final String ROOT = "root";
final String CHILD = "a";
final String NEW_NAME = "a2";
- final long TIME_LIMIT = 100;
+ final long TIME_LIMIT = 1000;
final boolean[] notificationReceived = { false};
// Client1 creates resource

Back to the top