diff options
author | Serge Krot <Serge.Krot@cib.de> | 2020-06-16 17:11:12 +0200 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2020-06-17 17:00:46 +0200 |
commit | 33ad3ee258587904afaa03550858beac25b883f7 (patch) | |
tree | b9da475b6226ce31132917efe2360bd8a52ee568 /sw/qa/extras/ooxmlimport | |
parent | 5568d92c5c705b4d728af859dc44afdd64e72195 (diff) |
tdf#134043 DOCX import: DropDown text field instead of ComboBox form control
Change-Id: Ide9cedefde3b00fa0eeb37a6540e8d4a420b70c0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96471
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'sw/qa/extras/ooxmlimport')
-rw-r--r-- | sw/qa/extras/ooxmlimport/ooxmlimport.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx index ecd4c588fbbd..b2e67a1d3769 100644 --- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx +++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx @@ -1367,8 +1367,8 @@ DECLARE_OOXMLIMPORT_TEST(testTdf133448, "tdf133448.docx") CPPUNIT_ASSERT(xGraphicDescriptor->getPropertyValue("SizePixel") >>= aSizePixel); //Without the fix in place, the graphic's size is 0x0 - CPPUNIT_ASSERT_EQUAL(sal_Int32(837), aSizePixel.Width); - CPPUNIT_ASSERT_EQUAL(sal_Int32(598), aSizePixel.Height); + CPPUNIT_ASSERT_GREATER(sal_Int32(0), aSizePixel.Width); + CPPUNIT_ASSERT_GREATER(sal_Int32(0), aSizePixel.Height); } DECLARE_OOXMLIMPORT_TEST(testTdf100072, "tdf100072.docx") |