xmloff/qa/unit/draw.cxx | 2 +- xmloff/qa/unit/style.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit cec5d6f1c86880c300e973f4842934db0e93fa29 Author: Xisco Fauli <[email protected]> AuthorDate: Sat Feb 14 13:56:00 2026 +0100 Commit: Xisco Fauli <[email protected]> CommitDate: Sat Feb 14 17:10:45 2026 +0100 xmloff: fix two tests saving to the wrong format Change-Id: I699bdb262cf608dfdb1ebfdb1706b06e3cf6c3d2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/199371 Tested-by: Jenkins Reviewed-by: Xisco Fauli <[email protected]> diff --git a/xmloff/qa/unit/draw.cxx b/xmloff/qa/unit/draw.cxx index 5dee99bc8db1..c46dced7017b 100644 --- a/xmloff/qa/unit/draw.cxx +++ b/xmloff/qa/unit/draw.cxx @@ -93,7 +93,7 @@ CPPUNIT_TEST_FIXTURE(XmloffDrawTest, testTextBoxLoss) { // Load a document that has a shape with a textbox in it. Save it to ODF and reload. loadFromFile(u"textbox-loss.docx"); - saveAndReload(TestFilter::ODP); + saveAndReload(TestFilter::ODT); // Make sure that the shape is still a textbox. uno::Reference<drawing::XDrawPageSupplier> xDrawPageSupplier(mxComponent, uno::UNO_QUERY); diff --git a/xmloff/qa/unit/style.cxx b/xmloff/qa/unit/style.cxx index bcf12a5767d4..44e7e34c4a7c 100644 --- a/xmloff/qa/unit/style.cxx +++ b/xmloff/qa/unit/style.cxx @@ -456,7 +456,7 @@ CPPUNIT_TEST_FIXTURE(XmloffStyleTest, testMCGR_threeStops) loadFromFile(u"MCGR_threeStops.fodt"); // saveAndReload includes validation and must not fail with the new elements and attributes. - saveAndReload(TestFilter::ODG); + saveAndReload(TestFilter::ODT); // Examine file markup // For compatibility the file should still have the old attributes 'start-color' and 'end-color'
