fix test after the recent w:position fix (i.e. bnc#773061)

The value 58 was hardcoded in w:position handling before and so was
reused for the test, but now use the value that is (hopefully) correct.

Change-Id: I1191fce9859d688a60f1b3fbdb0e704b130c1670
This commit is contained in:
Luboš Luňák
2012-08-07 12:28:45 +02:00
parent d7fb4c8cd6
commit fc41a73a67

View File

@@ -380,7 +380,7 @@ void Test::testFdo43965()
uno::Reference<beans::XPropertySet> xPropertySet(xRangeEnum->nextElement(), uno::UNO_QUERY);
sal_Int32 nValue;
xPropertySet->getPropertyValue("CharEscapement") >>= nValue;
CPPUNIT_ASSERT_EQUAL(sal_Int32(58), nValue);
CPPUNIT_ASSERT_EQUAL(sal_Int32(36), nValue);
xPropertySet->getPropertyValue("CharEscapementHeight") >>= nValue;
CPPUNIT_ASSERT_EQUAL(sal_Int32(100), nValue);