diff options
author | Ashod Nakashian <ashod.nakashian@collabora.co.uk> | 2019-07-20 11:01:38 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2019-08-02 11:41:48 -0400 |
commit | ff90a487276fa98d1868fdeda4d14dceae5f75b5 (patch) | |
tree | 95dc7fab35a7a5b6581e6831811704a8bb096c36 /desktop | |
parent | 7fe30d1cb00c576469d6cbe5606268a9cdf35bd3 (diff) |
LOK: Enable embedding images in text/html format output
Change-Id: Ibd8bed796678ee26de2ceb6e434dce24da4eab05
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/qa/desktop_lib/test_desktop_lib.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx b/desktop/qa/desktop_lib/test_desktop_lib.cxx index 9f1e66a0851e..6d6416a46e16 100644 --- a/desktop/qa/desktop_lib/test_desktop_lib.cxx +++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx @@ -2682,7 +2682,7 @@ void DesktopLOKTest::testComplexSelection() pText = pDocument->pClass->getTextSelection(pDocument, "text/html", nullptr); CPPUNIT_ASSERT(pText != nullptr); CPPUNIT_ASSERT(std::string(pText).find(aText.getStr()) != std::string::npos); // Must have the text. - // CPPUNIT_ASSERT(std::string(pText).find("<img") != std::string::npos); // Must have the image as well. + CPPUNIT_ASSERT(std::string(pText).find("<img") != std::string::npos); // Must have the image as well. free(pText); // We expect this to be complex. |