sw/qa/extras/odfexport/odfexport2.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f96a1389ce2b9f09a76998db5f86586cd519f6eb
Author:     Miklos Vajna <vmik...@collabora.com>
AuthorDate: Thu Jul 21 20:06:15 2022 +0200
Commit:     Miklos Vajna <vmik...@collabora.com>
CommitDate: Fri Jul 22 08:02:55 2022 +0200

    CppunitTest_sw_odfexport: use more SwParaPortion::dumpAsXml()
    
    See commit feeed3e762cf077fbd9cf48f82e949365108ccc1
    (CppunitTest_sw_layoutwriter: avoid some a11y-based layout testing,
    2022-04-07) for motivation.
    
    Change-Id: Ieeeeb6be0d86eabfd5178ba576230a9859064724
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137313
    Tested-by: Jenkins
    Reviewed-by: Miklos Vajna <vmik...@collabora.com>

diff --git a/sw/qa/extras/odfexport/odfexport2.cxx 
b/sw/qa/extras/odfexport/odfexport2.cxx
index c128d7be52d1..064e4dbd24ea 100644
--- a/sw/qa/extras/odfexport/odfexport2.cxx
+++ b/sw/qa/extras/odfexport/odfexport2.cxx
@@ -27,11 +27,11 @@ public:
 DECLARE_ODFEXPORT_TEST(testTdf52065_centerTabs, "testTdf52065_centerTabs.odt")
 {
     CPPUNIT_ASSERT_EQUAL(1, getPages());
-    sal_Int32 nTabStop = parseDump("//body/txt[4]/Text[3]", 
"nWidth").toInt32();
+    sal_Int32 nTabStop = 
parseDump("//body/txt[4]/SwParaPortion/SwLineLayout/child::*[3]", 
"width").toInt32();
     // Without the fix, the text was unseen, with a tabstop width of 64057. It 
should be 3057
     CPPUNIT_ASSERT(nTabStop < 4000);
     CPPUNIT_ASSERT(3000 < nTabStop);
-    CPPUNIT_ASSERT_EQUAL(OUString(u"Pečiatka zamestnávateľa"), 
parseDump("//body/txt[4]/Text[4]", "Portion"));
+    CPPUNIT_ASSERT_EQUAL(OUString(u"Pečiatka zamestnávateľa"), 
parseDump("//body/txt[4]/SwParaPortion/SwLineLayout/child::*[4]", "portion"));
 }
 
 DECLARE_ODFEXPORT_TEST(testTdf104254_noHeaderWrapping, 
"tdf104254_noHeaderWrapping.odt")

Reply via email to