Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Besedin2011-12-14 19:37:56 +0000
committerOleg Besedin2011-12-14 19:40:25 +0000
commitcff41c44fc1df46c1519de263d30f48f7c0f49cf (patch)
tree8905c28a40639afe91c2b9edc172dcee7333fffd
parent3128b7fd48aedddff94d091849c468e00318f917 (diff)
downloadeclipse.platform.ui-cff41c44fc1df46c1519de263d30f48f7c0f49cf.tar.gz
eclipse.platform.ui-cff41c44fc1df46c1519de263d30f48f7c0f49cf.tar.xz
eclipse.platform.ui-cff41c44fc1df46c1519de263d30f48f7c0f49cf.zip
Bug 366619 - Test failures in DecoratorsTestSuite on 4.x
-rw-r--r--tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/decorators/ExceptionDecoratorTestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/decorators/ExceptionDecoratorTestCase.java b/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/decorators/ExceptionDecoratorTestCase.java
index 03174d53e2d..bcbd67c5b60 100644
--- a/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/decorators/ExceptionDecoratorTestCase.java
+++ b/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/decorators/ExceptionDecoratorTestCase.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2006 IBM Corporation and others.
+ * Copyright (c) 2004, 2011 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
@@ -42,7 +42,6 @@ public class ExceptionDecoratorTestCase extends DecoratorEnablementTestCase
* Sets up the hierarchy.
*/
protected void doSetUp() throws Exception {
- super.doSetUp();
//reset the static fields so that the decorators will fail
HeavyNullImageDecorator.fail = true;
HeavyNullTextDecorator.fail = true;
@@ -64,6 +63,7 @@ public class ExceptionDecoratorTestCase extends DecoratorEnablementTestCase
light = definitions[i];
}
}
+ super.doSetUp();
} /* (non-Javadoc)
* @see org.eclipse.ui.tests.navigator.LightweightDecoratorTestCase#doTearDown()
*/

Back to the top