diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-07-16 13:56:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-07-16 14:00:22 +0200 |
commit | 7a044db51d35748f17b05f6d80ef90ad9000ad7a (patch) | |
tree | 9676a5fb569e0f4a5bd11763dd7c4b0f61a18664 /test | |
parent | db33fc46213be19daeff7e7a3c55b9f1d48eb01e (diff) |
loplugin:simplifybool
Change-Id: Idb065bab0285a5db209e75e29a9f6f4d72091e8c
Diffstat (limited to 'test')
-rw-r--r-- | test/source/sheet/xprintareas.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/source/sheet/xprintareas.cxx b/test/source/sheet/xprintareas.cxx index 5e1fb609ed10..cd470ca495d7 100644 --- a/test/source/sheet/xprintareas.cxx +++ b/test/source/sheet/xprintareas.cxx @@ -23,7 +23,7 @@ namespace apitest { uno::Reference< sheet::XPrintAreas > xPrintAreas(init(), UNO_QUERY_THROW); xPrintAreas->setPrintTitleColumns(sal_True); - CPPUNIT_ASSERT_MESSAGE("Wrong attribution at PrintTitleColumns", xPrintAreas->getPrintTitleColumns() == sal_True); + CPPUNIT_ASSERT_MESSAGE("Wrong attribution at PrintTitleColumns", xPrintAreas->getPrintTitleColumns()); } @@ -32,7 +32,7 @@ namespace apitest { uno::Reference< sheet::XPrintAreas > xPrintAreas(init(), UNO_QUERY_THROW); xPrintAreas->setPrintTitleRows(sal_True); - CPPUNIT_ASSERT_MESSAGE("Wrong attribution at PrintTitleRows", xPrintAreas->getPrintTitleRows() == sal_True); + CPPUNIT_ASSERT_MESSAGE("Wrong attribution at PrintTitleRows", xPrintAreas->getPrintTitleRows()); } // the rest is right now in progress... |