diff options
Diffstat (limited to 'sd')
-rw-r--r-- | sd/qa/unit/export-tests-ooxml1.cxx | 5 | ||||
-rw-r--r-- | sd/qa/unit/export-tests.cxx | 12 |
2 files changed, 0 insertions, 17 deletions
diff --git a/sd/qa/unit/export-tests-ooxml1.cxx b/sd/qa/unit/export-tests-ooxml1.cxx index 9bbcab21cbaa..0c0815a548ec 100644 --- a/sd/qa/unit/export-tests-ooxml1.cxx +++ b/sd/qa/unit/export-tests-ooxml1.cxx @@ -779,11 +779,6 @@ CPPUNIT_TEST_FIXTURE(SdOOXMLExportTest1, testFdo79731) CPPUNIT_TEST_FIXTURE(SdOOXMLExportTest1, testTableCellFillProperties) { - std::shared_ptr<comphelper::ConfigurationChanges> batch( - comphelper::ConfigurationChanges::create()); - officecfg::Office::Common::Cache::GraphicManager::TotalCacheSize::set(sal_Int32(1), batch); - batch->commit(); - // Load the original file createSdImpressDoc("odp/Table_with_Cell_Fill.odp"); diff --git a/sd/qa/unit/export-tests.cxx b/sd/qa/unit/export-tests.cxx index 4be14483aad4..aee7e6724e32 100644 --- a/sd/qa/unit/export-tests.cxx +++ b/sd/qa/unit/export-tests.cxx @@ -428,12 +428,6 @@ CPPUNIT_TEST_FIXTURE(SdExportTest, testSwappedOutImageExport) { // Problem was with the swapped out images, which were not swapped in during export. - // Set cache size to a very small value to make sure one of the images is swapped out - std::shared_ptr<comphelper::ConfigurationChanges> xBatch( - comphelper::ConfigurationChanges::create()); - officecfg::Office::Common::Cache::GraphicManager::TotalCacheSize::set(sal_Int32(1), xBatch); - xBatch->commit(); - std::vector<OUString> vFormat{ "impress8", "Impress Office Open XML", "MS PowerPoint 97" }; for (size_t i = 0; i < vFormat.size(); i++) @@ -742,12 +736,6 @@ CPPUNIT_TEST_FIXTURE(SdExportTest, testImageWithSpecialID) // Check how LO handles when the imported graphic's ID is different from that one // which is generated by LO. - // Trigger swap out mechanism to test swapped state factor too. - std::shared_ptr<comphelper::ConfigurationChanges> batch( - comphelper::ConfigurationChanges::create()); - officecfg::Office::Common::Cache::GraphicManager::TotalCacheSize::set(sal_Int32(1), batch); - batch->commit(); - std::vector<OUString> vFormat{ "impress8", "Impress Office Open XML", "MS PowerPoint 97" }; for (size_t i = 0; i < vFormat.size(); i++) { |