summaryrefslogtreecommitdiff
path: root/io/test/testconnection.cxx
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-03-12 14:53:51 +0000
committerJoachim Lingner <jl@openoffice.org>2001-03-12 14:53:51 +0000
commite5b2329213c48bb2fdefbffab6635a0bcc05f5fc (patch)
treece53a7b149d9885bbfde85f2e840f54193571900 /io/test/testconnection.cxx
parentb3fc09987116a82f56b25e83be6422fda6088fef (diff)
OSL_ENSHURE replaced by OSL_ENSURE
Diffstat (limited to 'io/test/testconnection.cxx')
-rw-r--r--io/test/testconnection.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/io/test/testconnection.cxx b/io/test/testconnection.cxx
index 4c7adab9b4e3..31a00110aad4 100644
--- a/io/test/testconnection.cxx
+++ b/io/test/testconnection.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testconnection.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: mfe $ $Date: 2001-02-01 12:40:06 $
+ * last change: $Author: jl $ $Date: 2001-03-12 15:53:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -192,7 +192,7 @@ void testConnection( const OUString &sConnectionDescription ,
{
Sequence < sal_Int8 > seq(10);
r->write( seq );
- OSL_ENSHURE( 0 , "expected exception not thrown" );
+ OSL_ENSURE( 0 , "expected exception not thrown" );
}
catch ( IOException & )
{
@@ -200,7 +200,7 @@ void testConnection( const OUString &sConnectionDescription ,
}
catch ( ... )
{
- OSL_ENSHURE( 0 , "wrong exception was thrown" );
+ OSL_ENSURE( 0 , "wrong exception was thrown" );
}
thread.join();
@@ -228,7 +228,7 @@ int __cdecl main( int argc, char * argv[] )
Reference< XImplementationRegistration > xImplReg(
xMgr->createInstance( OUString::createFromAscii("com.sun.star.registry.ImplementationRegistration") ), UNO_QUERY );
- OSL_ENSHURE( xImplReg.is(), "### no impl reg!" );
+ OSL_ENSURE( xImplReg.is(), "### no impl reg!" );
OUString aLibName = OUString::createFromAscii( REG_PREFIX );
aLibName += OUString::createFromAscii("connectr");