Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2017-10-25 21:56:14 +0000
committerAndrey Loskutov2017-10-25 21:56:14 +0000
commit590cab1c659ad2eabe5d693e7d2a470e8a6c4dd5 (patch)
treeb941fc159be1a27aae1224c6a0e4c3745de18897
parentd8f2afcd4c949b369d37756c3b516e389cea20ca (diff)
downloadeclipse.platform.debug-590cab1c659ad2eabe5d693e7d2a470e8a6c4dd5.tar.gz
eclipse.platform.debug-590cab1c659ad2eabe5d693e7d2a470e8a6c4dd5.tar.xz
eclipse.platform.debug-590cab1c659ad2eabe5d693e7d2a470e8a6c4dd5.zip
ContentTests.testLabelUpdatesCompletedOutOfSequence2 is unstable Changed the test order to avoid instability of test testLabelUpdatesCompletedOutOfSequence2 which, if executed after testLabelUpdatesCompletedOutOfSequence1 sometimes fail (on my Windows machine it failed always). Change-Id: Ib4a5b5351de05a0b1f8171390fb19339fa9edca6 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
-rw-r--r--org.eclipse.debug.tests/src/org/eclipse/debug/tests/viewer/model/ContentTests.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.tests/src/org/eclipse/debug/tests/viewer/model/ContentTests.java b/org.eclipse.debug.tests/src/org/eclipse/debug/tests/viewer/model/ContentTests.java
index 34aa8ffbe..bbec1ca4a 100644
--- a/org.eclipse.debug.tests/src/org/eclipse/debug/tests/viewer/model/ContentTests.java
+++ b/org.eclipse.debug.tests/src/org/eclipse/debug/tests/viewer/model/ContentTests.java
@@ -139,7 +139,7 @@ abstract public class ContentTests extends AbstractViewerModelTest implements IT
* use data from stale updates to populate the viewer.<br>
* See bug 210027
*/
- public void testLabelUpdatesCompletedOutOfSequence1() throws Exception {
+ public void testLabelUpdatesCompletedOutOfSequence3() throws Exception {
TestModelWithCapturedUpdates model = new TestModelWithCapturedUpdates();
model.fCaptureLabelUpdates = true;

Back to the top