From ebcf824de8101fbbda01ee91010698977041f031 Mon Sep 17 00:00:00 2001 From: Xisco Fauli Date: Wed, 2 Feb 2022 10:45:13 +0100 Subject: 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 Reviewed-by: Xisco Fauli --- sd/qa/unit/PNGExportTests.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sd/qa/unit/PNGExportTests.cxx') 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(); -- cgit