summaryrefslogtreecommitdiff
path: root/sd/qa/unit/PNGExportTests.cxx
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2022-02-02 10:45:13 +0100
committerXisco Fauli <xiscofauli@libreoffice.org>2022-02-02 11:58:58 +0100
commitebcf824de8101fbbda01ee91010698977041f031 (patch)
treeedd61a46e8c1fe136ba8d70cee6e52c5725bdb41 /sd/qa/unit/PNGExportTests.cxx
parent22b66d4083d34cbce2b7b48daeed3152bf9877b7 (diff)
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 <xiscofauli@libreoffice.org> Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'sd/qa/unit/PNGExportTests.cxx')
-rw-r--r--sd/qa/unit/PNGExportTests.cxx2
1 files changed, 1 insertions, 1 deletions
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();