Author: hdu
Date: Mon Feb 4 13:29:29 2013
New Revision: 1442108
URL: http://svn.apache.org/viewvc?rev=1442108&view=rev
Log:
fix ShapeProperties FVT autotesting's type mismatch for RotateAngle
Modified:
openoffice/trunk/test/testuno/source/fvt/uno/sd/shape/ShapeProperties.java
Modified:
openoffice/trunk/test/testuno/source/fvt/uno/sd/shape/ShapeProperties.java
URL:
http://svn.apache.org/viewvc/openoffice/trunk/test/testuno/source/fvt/uno/sd/shape/ShapeProperties.java?rev=1442108&r1=1442107&r2=1442108&view=diff
==============================================================================
--- openoffice/trunk/test/testuno/source/fvt/uno/sd/shape/ShapeProperties.java
(original)
+++ openoffice/trunk/test/testuno/source/fvt/uno/sd/shape/ShapeProperties.java
Mon Feb 4 13:29:29 2013
@@ -316,7 +316,7 @@ public class ShapeProperties {
xShape=saveAndLoadShape(1,0);
xPropSet = (XPropertySet) UnoRuntime.queryInterface(
XPropertySet.class, xShape);
- assertEquals("RotateAngle is not 2500", 2500 ,
xPropSet.getPropertyValue("RotateAngle"));
+ assertEquals("RotateAngle is not 2500", 2500L,
xPropSet.getPropertyValue("RotateAngle"));
}