summaryrefslogtreecommitdiffstats
path: root/filter/qa/cppunit
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-07-15 15:38:17 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-07-16 08:09:56 +0200
commitbd2eed385f5827e3b7f3510d4f83be03d548d418 (patch)
tree7c830679a40c079698177a670bb2794df69fdb43 /filter/qa/cppunit
parentUpdate git submodules (diff)
downloadcore-bd2eed385f5827e3b7f3510d4f83be03d548d418.tar.gz
core-bd2eed385f5827e3b7f3510d4f83be03d548d418.zip
write out empty state explicitly in writeRectangle
this is purely an internal XML format, so we can change it Change-Id: I9e2a4350c6c3f51031742e94823ea052dd73c8df Reviewed-on: https://gerrit.libreoffice.org/75639 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'filter/qa/cppunit')
-rw-r--r--filter/qa/cppunit/filters-pict-test.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/qa/cppunit/filters-pict-test.cxx b/filter/qa/cppunit/filters-pict-test.cxx
index 67a04c52e159..a7824e4e929c 100644
--- a/filter/qa/cppunit/filters-pict-test.cxx
+++ b/filter/qa/cppunit/filters-pict-test.cxx
@@ -92,8 +92,8 @@ void PictFilterTest::testDontClipTooMuch()
assertXPath(pDoc, "/metafile/clipregion[5]", "top", "0");
assertXPath(pDoc, "/metafile/clipregion[5]", "left", "0");
- assertXPath(pDoc, "/metafile/clipregion[5]", "bottom", "-32767");
- assertXPath(pDoc, "/metafile/clipregion[5]", "right", "-32767");
+ assertXPath(pDoc, "/metafile/clipregion[5]", "bottom", "empty");
+ assertXPath(pDoc, "/metafile/clipregion[5]", "right", "empty");
}
CPPUNIT_TEST_SUITE_REGISTRATION(PictFilterTest);