summaryrefslogtreecommitdiff
path: root/testtools
diff options
context:
space:
mode:
Diffstat (limited to 'testtools')
-rw-r--r--testtools/source/bridgetest/bridgetest.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/testtools/source/bridgetest/bridgetest.cxx b/testtools/source/bridgetest/bridgetest.cxx
index fbc8791eed07..a9d2cf8cf8b7 100644
--- a/testtools/source/bridgetest/bridgetest.cxx
+++ b/testtools/source/bridgetest/bridgetest.cxx
@@ -174,7 +174,7 @@ static sal_Bool equals( const TestData & rData1, const TestData & rData2 )
{
if (! equals( pElements1[nLen], pElements2[nLen] ))
{
- check( sal_False, "### sequence element did not match!" );
+ check( false, "### sequence element did not match!" );
return sal_False;
}
}
@@ -983,7 +983,7 @@ static sal_Bool raiseException( const Reference< XBridgeTest > & xLBT )
}
else
{
- check( sal_False, "### unexpected exception content!" );
+ check( false, "### unexpected exception content!" );
}
/** it is certain, that the RuntimeException testing will fail, if no */
@@ -1003,7 +1003,7 @@ static sal_Bool raiseException( const Reference< XBridgeTest > & xLBT )
}
else
{
- check( sal_False, "### unexpected exception content!" );
+ check( false, "### unexpected exception content!" );
}
/** it is certain, that the RuntimeException testing will fail, if no */
@@ -1023,7 +1023,7 @@ static sal_Bool raiseException( const Reference< XBridgeTest > & xLBT )
}
else
{
- check( sal_False, "### unexpected exception content!" );
+ check( false, "### unexpected exception content!" );
}
return (nCount == 3);
}