From 5a7f6793ac227c348198ae5958db5951214ec8d2 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Sat, 19 Mar 2011 14:12:37 +0100 Subject: Move OSL_ENSURE(sal_False,...) to OSL_FAIL(...) --- sal/test/unloading/samplelib1.cxx | 2 +- sal/test/unloading/samplelib2.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'sal/test') diff --git a/sal/test/unloading/samplelib1.cxx b/sal/test/unloading/samplelib1.cxx index 5199e25a6078..a0557906f3dc 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 621dace1db20..348e2619646c 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; -- cgit