diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-03-19 14:12:37 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-19 14:12:37 +0100 |
commit | 5a7f6793ac227c348198ae5958db5951214ec8d2 (patch) | |
tree | 25610ad164b4f66d705aecf6ea6c3ee72809c7e3 /stoc/test/testiadapter.cxx | |
parent | 1fa55878d9a8e0ce48501ad82fb537dc9c29855a (diff) |
Move OSL_ENSURE(sal_False,...) to OSL_FAIL(...)
Diffstat (limited to 'stoc/test/testiadapter.cxx')
-rw-r--r-- | stoc/test/testiadapter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stoc/test/testiadapter.cxx b/stoc/test/testiadapter.cxx index b91cae5ec98a..9a111ce0aac2 100644 --- a/stoc/test/testiadapter.cxx +++ b/stoc/test/testiadapter.cxx @@ -116,7 +116,7 @@ sal_Bool equals( const test::TestData & rData1, const test::TestData & rData2 ) { if (! equals( pElements1[nLen], pElements2[nLen] )) { - OSL_ENSURE( sal_False, "### sequence element did not match!" ); + OSL_FAIL( "### sequence element did not match!" ); return sal_False; } } @@ -541,7 +541,7 @@ Any XLB_Invocation::invoke( const OUString & rFunctionName, } catch (Exception &) { - OSL_ENSURE( sal_False, "### unexpected exception caught!" ); + OSL_FAIL( "### unexpected exception caught!" ); throw; } |