From e2c11d5fcc47cfe31c433bc7c0839498e13edc9c Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Wed, 18 Apr 2012 22:46:33 +0200 Subject: Remove extra parenthesis --- cppuhelper/test/testimplhelper.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cppuhelper') 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!" ); -- cgit