Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2013-06-26 09:39:43 +0000
committerEike Stepper2013-06-26 09:39:43 +0000
commit300133000581394467583064f4617e1ae88869ed (patch)
tree69157a7909eced844404a804bac67a1e03c04192 /plugins/org.eclipse.emf.cdo.tests
parent38c84737a16a8e590e2b41366877532640f45e57 (diff)
downloadcdo-committers/estepper/out-of-sequence-invalidation.tar.gz
cdo-committers/estepper/out-of-sequence-invalidation.tar.xz
cdo-committers/estepper/out-of-sequence-invalidation.zip
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_349804_Test.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_349804_Test.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_349804_Test.java
index 554db44b1e..904d174478 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_349804_Test.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/bugzilla/Bugzilla_349804_Test.java
@@ -96,7 +96,8 @@ public class Bugzilla_349804_Test extends AbstractCDOTest
// Invalidation shall fail, because it will use lastUpdateTime from TimeStampAuthority for commit result
transaction.commit();
- invalidationLatch.await(DEFAULT_TIMEOUT, TimeUnit.MILLISECONDS);
+ int removeEXPECTED;
+ invalidationLatch.await(DEFAULT_TIMEOUT_EXPECTED, TimeUnit.MILLISECONDS);
assertEquals("Invalidation was not delivered", 0, invalidationLatch.getCount());
}

Back to the top