summaryrefslogtreecommitdiff
path: root/sw/qa/extras/rtfimport
diff options
context:
space:
mode:
authorJustin Luth <justin_luth@sil.org>2016-06-28 08:34:26 +0300
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-07-01 07:14:25 +0000
commit1a13a9a46ae240966fa9152b35671384c07e7004 (patch)
tree0eaedd85c33ae8ff1bec0da35b78a45c96f7aae6 /sw/qa/extras/rtfimport
parentbfff963fefa930839171c4233699339979f3ceec (diff)
remove stylename dependency from rtfimport
It was not the intention of this unittest to specify the name of the style. Better not to hardcode a "random" name in a unit test. Change-Id: Ibf96f8c0e88ec61c4994d57c67d8958cde9a8d25 Reviewed-on: https://gerrit.libreoffice.org/26735 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sw/qa/extras/rtfimport')
-rw-r--r--sw/qa/extras/rtfimport/rtfimport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx b/sw/qa/extras/rtfimport/rtfimport.cxx
index 73096c8e705d..cfa2f85c44a8 100644
--- a/sw/qa/extras/rtfimport/rtfimport.cxx
+++ b/sw/qa/extras/rtfimport/rtfimport.cxx
@@ -1675,8 +1675,8 @@ DECLARE_RTFIMPORT_TEST(testContSectionPageBreak, "cont-section-pagebreak.rtf")
// SECOND and THIRD - important is that the page break is on there
uno::Reference<text::XTextRange> xParaNext = getParagraph(3);
CPPUNIT_ASSERT_EQUAL(OUString(""), xParaNext->getString());
- CPPUNIT_ASSERT_EQUAL(OUString("Converted1"),
- getProperty<OUString>(xParaNext, "PageDescName"));
+ //If PageDescName is not empty, a page break / switch to page style is defined
+ CPPUNIT_ASSERT(uno::Any() != getProperty<OUString>(xParaNext, "PageDescName"));
uno::Reference<text::XTextRange> xParaThird = getParagraph(4);
CPPUNIT_ASSERT_EQUAL(OUString("THIRD"), xParaThird->getString());
CPPUNIT_ASSERT_EQUAL(style::BreakType_NONE,