sd/qa/unit/PNGExportTests.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit ebcf824de8101fbbda01ee91010698977041f031 Author: Xisco Fauli <xiscofa...@libreoffice.org> AuthorDate: Wed Feb 2 10:45:13 2022 +0100 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Wed Feb 2 11:58:58 2022 +0100 fix build Yesterday I pushed 5d05abcc7cb53fd7f7d7ed700e3c65e9da3e5dea < tdf#105998: sd_png_export_tests: Add unittest > Meanwhile, Armin pushed 4d535c4f867d86d40786788e5e5c9fd061a65673 < tdf#126319 Corrected bitmap creation from metafile > making the size of the export shape to be 193x193 instead of 192x192 Change-Id: I366b7fc7d53db46a0beb1c5b588ac33ecabc343b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129348 Tested-by: Xisco Fauli <xiscofa...@libreoffice.org> Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> diff --git a/sd/qa/unit/PNGExportTests.cxx b/sd/qa/unit/PNGExportTests.cxx index cf75ac4172d7..72aa41c60023 100644 --- a/sd/qa/unit/PNGExportTests.cxx +++ b/sd/qa/unit/PNGExportTests.cxx @@ -77,7 +77,7 @@ CPPUNIT_TEST_FIXTURE(SdPNGExportTest, testTdf105998) // make sure only the shape is exported Size aSize = aBMPEx.GetSizePixel(); - CPPUNIT_ASSERT_EQUAL(Size(192, 192), aSize); + CPPUNIT_ASSERT_EQUAL(Size(193, 193), aSize); // Check all borders are red Bitmap aBMP = aBMPEx.GetBitmap();