You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by da...@apache.org on 2020/07/28 05:04:16 UTC

[openoffice] branch trunk updated: RotateAngle is a java.lang.Long

This is an automated email from the ASF dual-hosted git repository.

damjan pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 0eabae9  RotateAngle is a java.lang.Long
0eabae9 is described below

commit 0eabae982571a4b36cda4dad5508e00553ddfa53
Author: Damjan Jovanovic <da...@apache.org>
AuthorDate: Tue Jul 28 07:03:21 2020 +0200

    RotateAngle is a java.lang.Long
    
    Patch by: me
---
 test/testuno/source/fvt/uno/sd/shape/ShapeProperties.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/testuno/source/fvt/uno/sd/shape/ShapeProperties.java b/test/testuno/source/fvt/uno/sd/shape/ShapeProperties.java
index 3ffaad7..02664b9 100644
--- a/test/testuno/source/fvt/uno/sd/shape/ShapeProperties.java
+++ b/test/testuno/source/fvt/uno/sd/shape/ShapeProperties.java
@@ -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"));
 	}