diff options
-rw-r--r-- | sw/qa/extras/layout/layout.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/qa/extras/layout/layout.cxx b/sw/qa/extras/layout/layout.cxx index e6958348d0d6..af3cde2db379 100644 --- a/sw/qa/extras/layout/layout.cxx +++ b/sw/qa/extras/layout/layout.cxx @@ -2352,8 +2352,10 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter, testHorizontal_multilevel) xmlDocPtr pXmlDoc = dumpAndParse(dumper, *xMetaFile); CPPUNIT_ASSERT(pXmlDoc); // Test the Y position of horizontal category axis label. - assertXPath(pXmlDoc, "/metafile/push[1]/push[1]/push[1]/push[3]/push[1]/textarray[7]", "y", - "7945"); + sal_Int32 nYposition + = getXPath(pXmlDoc, "/metafile/push[1]/push[1]/push[1]/push[3]/push[1]/textarray[7]", "y") + .toInt32(); + CPPUNIT_ASSERT(nYposition > 7943 && nYposition < 7947); } CPPUNIT_TEST_FIXTURE(SwLayoutWriter, testTdf124796) |