You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by hd...@apache.org on 2013/02/04 14:29:29 UTC

svn commit: r1442108 - /openoffice/trunk/test/testuno/source/fvt/uno/sd/shape/ShapeProperties.java

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"));
 	}