Author: damjan
Date: Wed Jan 18 20:59:35 2017
New Revision: 1779382

URL: http://svn.apache.org/viewvc?rev=1779382&view=rev
Log:
Fix a main/sw subsequent test. The BackColor of a page style is irrelevant
since we only want to test changing it, and it only seems to have meaning
when the FillStyle is color, which it isn't.

Patch by: me

Modified:
    openoffice/trunk/main/sw/qa/complex/checkColor/CheckChangeColor.java

Modified: openoffice/trunk/main/sw/qa/complex/checkColor/CheckChangeColor.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sw/qa/complex/checkColor/CheckChangeColor.java?rev=1779382&r1=1779381&r2=1779382&view=diff
==============================================================================
--- openoffice/trunk/main/sw/qa/complex/checkColor/CheckChangeColor.java 
(original)
+++ openoffice/trunk/main/sw/qa/complex/checkColor/CheckChangeColor.java Wed 
Jan 18 20:59:35 2017
@@ -63,9 +63,6 @@ public class CheckChangeColor {
         XPropertySet xPropertySet = (XPropertySet) 
UnoRuntime.queryInterface(XPropertySet.class, 
xPageStyleCollection.getByName("Standard") );
 
         assertEquals(
-            "BackColor", new Any(Type.LONG, 0xFFFFFFFF),
-            Any.complete(xPropertySet.getPropertyValue("BackColor")));
-        assertEquals(
             "IsLandscape", new Any(Type.BOOLEAN, false),
             Any.complete(xPropertySet.getPropertyValue("IsLandscape")));
         assertEquals(


Reply via email to