summaryrefslogtreecommitdiff
path: root/sw/qa
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-08-07 12:28:45 +0200
committerLuboš Luňák <l.lunak@suse.cz>2012-08-08 16:32:56 +0200
commitfc41a73a67a2bd30006a49d061d870533d49c0e8 (patch)
tree69e2921d53c78be3698f8c151a479dad30b567e8 /sw/qa
parentd7fb4c8cd63eb5cf7386b801acf09afe44d68f3f (diff)
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
Diffstat (limited to 'sw/qa')
-rw-r--r--sw/qa/extras/rtfimport/rtfimport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx b/sw/qa/extras/rtfimport/rtfimport.cxx
index b185635af31b..0f5e7041c3cb 100644
--- a/sw/qa/extras/rtfimport/rtfimport.cxx
+++ b/sw/qa/extras/rtfimport/rtfimport.cxx
@@ -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);