Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2010-02-10 00:04:46 +0000
committerPawel Piech2010-02-10 00:04:46 +0000
commitd75b987d6363af1730d09bc376b5fe932b3819ef (patch)
tree3aedcdec0f970b17c5d01327082cf975f8f60391 /org.eclipse.debug.tests
parent91ee07bc2ee1d4415b8b08c827727f76388f925e (diff)
downloadeclipse.platform.debug-d75b987d6363af1730d09bc376b5fe932b3819ef.tar.gz
eclipse.platform.debug-d75b987d6363af1730d09bc376b5fe932b3819ef.tar.xz
eclipse.platform.debug-d75b987d6363af1730d09bc376b5fe932b3819ef.zip
Bug 299958 comment #9 - Temporary change to confirm windows failure.
Diffstat (limited to 'org.eclipse.debug.tests')
-rw-r--r--org.eclipse.debug.tests/src/org/eclipe/debug/tests/viewer/model/StateTests.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/org.eclipse.debug.tests/src/org/eclipe/debug/tests/viewer/model/StateTests.java b/org.eclipse.debug.tests/src/org/eclipe/debug/tests/viewer/model/StateTests.java
index d314af446..a47f1229d 100644
--- a/org.eclipse.debug.tests/src/org/eclipe/debug/tests/viewer/model/StateTests.java
+++ b/org.eclipse.debug.tests/src/org/eclipe/debug/tests/viewer/model/StateTests.java
@@ -453,8 +453,9 @@ abstract public class StateTests extends TestCase implements ITestModelUpdatesLi
expandAlternateElements(model, true);
// Set a selection in view
- TreeSelection originalSelection = new TreeSelection(
- new TreePath[] { model.findElement("5"), model.findElement("5.1"), model.findElement("6") });
+// TreeSelection originalSelection = new TreeSelection(
+// new TreePath[] { model.findElement("5"), model.findElement("5.1"), model.findElement("6") });
+ TreeSelection originalSelection = new TreeSelection(model.findElement("5.1.1"));
fViewer.setSelection(originalSelection);
Assert.assertTrue( areTreeSelectionsEqual(originalSelection, (ITreeSelection)fViewer.getSelection()) );

Back to the top