Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2006-04-14 02:47:17 +0000
committerMichael Valenta2006-04-14 02:47:17 +0000
commitd989ea4e654e2ccd4fd3bdb55f18f9e717005704 (patch)
tree5935b44431b3e26303dc4eb4d32e562796f20d6e /tests/org.eclipse.team.tests.cvs.core
parenta27bfa9d61db0cf0005ec71d93d9f4aa426debc7 (diff)
downloadeclipse.platform.team-d989ea4e654e2ccd4fd3bdb55f18f9e717005704.tar.gz
eclipse.platform.team-d989ea4e654e2ccd4fd3bdb55f18f9e717005704.tar.xz
eclipse.platform.team-d989ea4e654e2ccd4fd3bdb55f18f9e717005704.zip
Bug 136611Timing issue is tests?I200604132200
Diffstat (limited to 'tests/org.eclipse.team.tests.cvs.core')
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/ModelParticipantSyncInfoSource.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/ModelParticipantSyncInfoSource.java b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/ModelParticipantSyncInfoSource.java
index 80f9a12ff..90cfc4a94 100644
--- a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/ModelParticipantSyncInfoSource.java
+++ b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/ModelParticipantSyncInfoSource.java
@@ -274,7 +274,7 @@ public class ModelParticipantSyncInfoSource extends ParticipantSyncInfoSource {
ISynchronizeParticipantReference[] participants = synchronizeManager.get(WorkspaceModelParticipant.ID);
if (participants.length > 0) {
Subscriber subscriber = ((SubscriberMergeContext)((WorkspaceModelParticipant)participants[0].getParticipant()).getContext()).getSubscriber();
- refresh(subscriber, subscriber.roots());
+ waitForCollectionToFinish(subscriber);
return subscriber;
}
WorkspaceModelParticipant participant = new WorkspaceModelParticipant(WorkspaceSubscriberContext.createContext(createWorkspaceScopeManager(), ISynchronizationContext.THREE_WAY));

Back to the top