summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-07-16 13:56:37 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-07-16 14:00:22 +0200
commit7a044db51d35748f17b05f6d80ef90ad9000ad7a (patch)
tree9676a5fb569e0f4a5bd11763dd7c4b0f61a18664 /test
parentdb33fc46213be19daeff7e7a3c55b9f1d48eb01e (diff)
loplugin:simplifybool
Change-Id: Idb065bab0285a5db209e75e29a9f6f4d72091e8c
Diffstat (limited to 'test')
-rw-r--r--test/source/sheet/xprintareas.cxx4
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...