diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 19:59:50 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:20 +0100 |
commit | 7dca2dd95b21df2b36c6a8e7e9edfb49dbd2acd1 (patch) | |
tree | 3c1ddbf52a90a622e71530d1868f860153fc4ed8 /testtools | |
parent | fbda6021550f4fe342ded19517b4aeaaeeec47e1 (diff) |
bool improvements
Change-Id: Ifecb1d1e31759141d1468d40c3653a193561a98b
Diffstat (limited to 'testtools')
-rw-r--r-- | testtools/source/bridgetest/bridgetest.cxx | 8 |
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); } |