Author: hdu
Date: Mon Feb 24 16:48:02 2014
New Revision: 1571345
URL: http://svn.apache.org/r1571345
Log:
#i123160# fix shape-count failure in fvt.gui.sd.shape.ShapeTypes
folding in the shape-list before counting the shapes resulted in the
wrong number (==1) instead of the expected four items.
Modified:
openoffice/trunk/test/testgui/source/fvt/gui/sd/shape/ShapeTypes.java
Modified: openoffice/trunk/test/testgui/source/fvt/gui/sd/shape/ShapeTypes.java
URL:
http://svn.apache.org/viewvc/openoffice/trunk/test/testgui/source/fvt/gui/sd/shape/ShapeTypes.java?rev=1571345&r1=1571344&r2=1571345&view=diff
==============================================================================
--- openoffice/trunk/test/testgui/source/fvt/gui/sd/shape/ShapeTypes.java
(original)
+++ openoffice/trunk/test/testgui/source/fvt/gui/sd/shape/ShapeTypes.java Mon
Feb 24 16:48:02 2014
@@ -97,8 +97,6 @@ public class ShapeTypes {
typeKeys("<down><down>");
typeKeys("<enter>");
sdNavigator.focus();
- sdNavigator.select(0);
- typeKeys("<enter>");
allShapes=sdNavigator.getAllItemsText();
assertEquals(4, allShapes.length);
}
@@ -132,8 +130,6 @@ public class ShapeTypes {
typeKeys("<down><down>");
typeKeys("<enter>");
sdNavigator.focus();
- sdNavigator.select(0);
- typeKeys("<enter>");
allShapes=sdNavigator.getAllItemsText();
assertEquals(4, allShapes.length);
}