diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-07-14 09:10:13 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-07-14 09:12:04 +0200 |
commit | b7b2887d62ea249310f02f03c4ce31cbd8f21307 (patch) | |
tree | cb178ffbc9329308214b20ce8e0f990eda8793e1 /sd/qa/unit | |
parent | d8e5a0db64fa022b54bddc42b1b1db0c1ddfe2d1 (diff) |
Revert "tdf#109067 Fix default value of rotWithShape"
This reverts commit 1b08f129677c1109aae1fadc72ae68ebb7df7cb0. The
change was Jenkins-verified, but just rebasing it on top of latest
master (without getting conflicts) broke the test added in the commit.
So let's revert it for now to have time to find out why does the test
fail on top of latest master.
Change-Id: I3bce24e54fb07df2dd460fb0f01d44516b3fcd0d
Diffstat (limited to 'sd/qa/unit')
-rw-r--r-- | sd/qa/unit/data/pptx/tdf109067.pptx | bin | 20183 -> 0 bytes | |||
-rw-r--r-- | sd/qa/unit/import-tests.cxx | 13 |
2 files changed, 0 insertions, 13 deletions
diff --git a/sd/qa/unit/data/pptx/tdf109067.pptx b/sd/qa/unit/data/pptx/tdf109067.pptx Binary files differdeleted file mode 100644 index ef213774cbd8..000000000000 --- a/sd/qa/unit/data/pptx/tdf109067.pptx +++ /dev/null diff --git a/sd/qa/unit/import-tests.cxx b/sd/qa/unit/import-tests.cxx index b71b4aec4e8e..a4d8253399a6 100644 --- a/sd/qa/unit/import-tests.cxx +++ b/sd/qa/unit/import-tests.cxx @@ -161,7 +161,6 @@ public: void testTdf100926(); void testTdf89064(); void testTdf108925(); - void testTdf109067(); bool checkPattern(sd::DrawDocShellRef& rDocRef, int nShapeNumber, std::vector<sal_uInt8>& rExpected); void testPatternImport(); @@ -231,7 +230,6 @@ public: CPPUNIT_TEST(testPatternImport); CPPUNIT_TEST(testTdf89064); CPPUNIT_TEST(testTdf108925); - CPPUNIT_TEST(testTdf109067); CPPUNIT_TEST_SUITE_END(); }; @@ -2208,17 +2206,6 @@ void SdImportTest::testTdf108925() xDocShRef->DoClose(); } -void SdImportTest::testTdf109067() -{ - sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("sd/qa/unit/data/pptx/tdf109067.pptx"), PPTX); - uno::Reference< beans::XPropertySet > xShape(getShapeFromPage(0, 0, xDocShRef), uno::UNO_QUERY_THROW); - awt::Gradient gradient; - CPPUNIT_ASSERT(xShape->getPropertyValue("FillGradient") >>= gradient); - CPPUNIT_ASSERT_EQUAL(sal_Int16(450), gradient.Angle); - - xDocShRef->DoClose(); -} - CPPUNIT_TEST_SUITE_REGISTRATION(SdImportTest); CPPUNIT_PLUGIN_IMPLEMENT(); |