diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2018-04-24 13:01:22 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2018-05-14 17:31:58 +0200 |
commit | 6154d04d90b7b4f68e6c3629bf0c6306ef64a937 (patch) | |
tree | c90c7e8f67ededb906428dfe55b6c3fd7fb7964b /sw/qa | |
parent | f72bd4f02b70e1c4855795b4237e2965556c4689 (diff) |
remove page count check in a test (irrelevant and fragile)
If I load this document in LO, either my build or distro build, it has only
one page, so the test fails for me only because of the 2-page check.
The commit causing this, b904d639a8, has been in for quite a while,
so it's apparently something special about my setup, but a) the test
doesn't actually require 2 pages for anything, b) the commit mentions that
the test is fragile, c) if I manually inspect the .rtf, there's an extra page
that I do not see even in Word2013, so the document is possibly a bit broken.
One way or another, the page check seems pointless.
Change-Id: I18bdf25f71e8eb9225acd667e60f426fca008ee4
Reviewed-on: https://gerrit.libreoffice.org/53380
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'sw/qa')
-rw-r--r-- | sw/qa/extras/rtfimport/rtfimport.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx b/sw/qa/extras/rtfimport/rtfimport.cxx index 1286d81f7762..10c32eb50c50 100644 --- a/sw/qa/extras/rtfimport/rtfimport.cxx +++ b/sw/qa/extras/rtfimport/rtfimport.cxx @@ -1377,9 +1377,6 @@ DECLARE_RTFIMPORT_TEST(testImportHeaderFooter, "tdf108055.rtf") DECLARE_RTFIMPORT_TEST(testTdf108947, "tdf108947.rtf") { - //Check page count - CPPUNIT_ASSERT_EQUAL(2, getPages()); - //Check if Headers/Footers contain what they should in this document uno::Reference<text::XText> xHeaderTextRight = getProperty<uno::Reference<text::XText>>( getStyles("PageStyles")->getByName("Default Style"), "HeaderTextRight"); |