diff options
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... |