Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Moir2012-02-03 13:58:19 +0000
committerKim Moir2012-02-03 13:58:19 +0000
commit16561535fe8dec939f658196392fe9e0e7658ce3 (patch)
tree58dbd7f1778d0c044e7e9eea28d55774bf92115b
parent37eee2cc62cddb14867a08a73929575c2dac5401 (diff)
downloadeclipse.platform.ua-16561535fe8dec939f658196392fe9e0e7658ce3.tar.gz
eclipse.platform.ua-16561535fe8dec939f658196392fe9e0e7658ce3.tar.xz
eclipse.platform.ua-16561535fe8dec939f658196392fe9e0e7658ce3.zip
Bug 370329 - GetContentUsingRemoteHelp randomly fails on JRE 7 due to
wrong test order
-rw-r--r--[-rwxr-xr-x]org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/remote/AllRemoteTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/remote/AllRemoteTests.java b/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/remote/AllRemoteTests.java
index 5ec873f93..e8d2d02cc 100755..100644
--- a/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/remote/AllRemoteTests.java
+++ b/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/remote/AllRemoteTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2009, 2010 IBM Corporation and others.
+ * Copyright (c) 2009, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -38,7 +38,7 @@ public class AllRemoteTests extends TestSuite {
addTestSuite(LoadTocUsingRemoteHelp.class);
addTestSuite(SearchUsingRemoteHelp.class);
addTestSuite(LoadIndexUsingRemoteHelp.class);
- addTestSuite(GetContentUsingRemoteHelp.class);
+ addTest(GetContentUsingRemoteHelp.suite());
addTestSuite(GetContextUsingRemoteHelp.class);
addTestSuite(TocManagerTest.class);
addTestSuite(SearchIndexCreation.class);

Back to the top