summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-04-18 22:46:33 +0200
committerJulien Nabet <serval2412@yahoo.fr>2012-04-18 22:48:01 +0200
commite2c11d5fcc47cfe31c433bc7c0839498e13edc9c (patch)
tree74e5c79b94022488eafbeaec81c843f49c524d86 /cppuhelper
parent1ab7d31a6842ad680351e804990f7a0493f93b46 (diff)
Remove extra parenthesis
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/test/testimplhelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cppuhelper/test/testimplhelper.cxx b/cppuhelper/test/testimplhelper.cxx
index f38f2610b40b..f7f339d87d55 100644
--- a/cppuhelper/test/testimplhelper.cxx
+++ b/cppuhelper/test/testimplhelper.cxx
@@ -352,7 +352,7 @@ static void dotest( const Reference< XInterface > & xOriginal )
OSL_ENSURE( xa->a() == "a", "### A failed!" );
Reference< BA > xba( xa, UNO_QUERY );
OSL_ENSURE( xba->ba() == "ba", "### BA failed!" );
- OSL_ENSURE( xba->a() == "a" ), "### BA failed!" );
+ OSL_ENSURE( xba->a() == "a", "### BA failed!" );
Reference< CA > xca( xba, UNO_QUERY );
OSL_ENSURE( xca->ca() == "ca", "### CA failed!" );
OSL_ENSURE( xca->a() == "a", "### CA failed!" );