diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-03-28 11:39:30 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-03-28 16:16:34 +0200 |
commit | e4082f29b95ecbef5758e8419a9b00a074e0bfb0 (patch) | |
tree | e7eb651fb88993bf70e1f34e0be961aa346166db | |
parent | 850b401ebad13d20481f3ed01990c8070a33f6f1 (diff) |
Check successful filter operation
Change-Id: I220905486cc2287f2157f57b537c0df0b325bd36
Reviewed-on: https://gerrit.libreoffice.org/51994
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | sw/qa/extras/rtfimport/rtfimport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx b/sw/qa/extras/rtfimport/rtfimport.cxx index 9153a8747aa2..e2b32a450ed7 100644 --- a/sw/qa/extras/rtfimport/rtfimport.cxx +++ b/sw/qa/extras/rtfimport/rtfimport.cxx @@ -81,7 +81,7 @@ protected: aDescriptor[2].Name = "TextInsertModeRange"; aDescriptor[2].Value <<= xTextRange; } - xFilter->filter(aDescriptor); + CPPUNIT_ASSERT(xFilter->filter(aDescriptor)); } AllSettings m_aSavedSettings; }; |