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 | 7f5ce2bde679d1a512a631eea7909727eba1554f (patch) | |
tree | f20cf9f11f97c1c76a52c765576672899a1a9852 /sal/test | |
parent | 056869b3e4499ea41c8d066f31c79ce48aaa2767 (diff) |
Move OSL_ENSURE(sal_False,...) to OSL_FAIL(...)
Diffstat (limited to 'sal/test')
-rw-r--r-- | sal/test/unloading/samplelib1.cxx | 2 | ||||
-rw-r--r-- | sal/test/unloading/samplelib2.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sal/test/unloading/samplelib1.cxx b/sal/test/unloading/samplelib1.cxx index 333e97c12..5761e0ba9 100644 --- a/sal/test/unloading/samplelib1.cxx +++ b/sal/test/unloading/samplelib1.cxx @@ -172,7 +172,7 @@ extern "C" { } catch (InvalidRegistryException &) { - OSL_ENSURE( sal_False, "### InvalidRegistryException!" ); + OSL_FAIL( "### InvalidRegistryException!" ); } } return sal_False; diff --git a/sal/test/unloading/samplelib2.cxx b/sal/test/unloading/samplelib2.cxx index ea08cb6bb..169990b94 100644 --- a/sal/test/unloading/samplelib2.cxx +++ b/sal/test/unloading/samplelib2.cxx @@ -157,7 +157,7 @@ extern "C" { } catch (InvalidRegistryException &) { - OSL_ENSURE( sal_False, "### InvalidRegistryException!" ); + OSL_FAIL( "### InvalidRegistryException!" ); } } return sal_False; |