diff options
-rw-r--r-- | toolkit/qa/complex/toolkit/awtgrid/TMutableGridDataModel.java | 4 | ||||
-rw-r--r-- | unotest/source/cpp/unobootstrapprotector/unobootstrapprotector.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/qa/complex/toolkit/awtgrid/TMutableGridDataModel.java b/toolkit/qa/complex/toolkit/awtgrid/TMutableGridDataModel.java index a2af0bac4bcd..1623af8b68f2 100644 --- a/toolkit/qa/complex/toolkit/awtgrid/TMutableGridDataModel.java +++ b/toolkit/qa/complex/toolkit/awtgrid/TMutableGridDataModel.java @@ -119,7 +119,7 @@ public class TMutableGridDataModel : ( row == insertionPos ) ? inbetweenRow : m_rowValues[ row - 1 ]; - assertArrayEquals( "row number " + row + " has wrong content content after inserting a row", + assertArrayEquals( "row number " + row + " has wrong content after inserting a row", expectedRowData, actualRowData ); final Object actualHeading = m_dataModel.getRowHeading(row); @@ -188,7 +188,7 @@ public class TMutableGridDataModel : ( row >= insertionPos ) && ( row < insertionPos + insertedRowCount ) ? rowData[ row - insertionPos ] : m_rowValues[ row - insertedRowCount ]; - assertArrayEquals( "row number " + row + " has wrong content content after inserting multiple rows", + assertArrayEquals( "row number " + row + " has wrong content after inserting multiple rows", expectedRowData, actualRowData ); final Object actualHeading = m_dataModel.getRowHeading(row); diff --git a/unotest/source/cpp/unobootstrapprotector/unobootstrapprotector.cxx b/unotest/source/cpp/unobootstrapprotector/unobootstrapprotector.cxx index 9aee5f52bf63..2603f1607791 100644 --- a/unotest/source/cpp/unobootstrapprotector/unobootstrapprotector.cxx +++ b/unotest/source/cpp/unobootstrapprotector/unobootstrapprotector.cxx @@ -47,7 +47,7 @@ using namespace com::sun::star; //cppunit calls instantiates a new TextFixture for each test and calls setUp //and tearDown on that for every test in a fixture -//We basically need to call dispose on our root component context context to +//We basically need to call dispose on our root component context to //shut down cleanly in the right order. //But we can't setup and tear down the root component context for |