summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--comphelper/qa/container/testifcontainer.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/comphelper/qa/container/testifcontainer.cxx b/comphelper/qa/container/testifcontainer.cxx
index f8c9d7005a09..aa9cc38427c8 100644
--- a/comphelper/qa/container/testifcontainer.cxx
+++ b/comphelper/qa/container/testifcontainer.cxx
@@ -146,7 +146,8 @@ void TestInterfaceContainer2::test1()
while( iterator.hasMoreElements() )
{
Reference< XVetoableChangeListener > r = static_cast<XVetoableChangeListener*>(iterator.next());
- CPPUNIT_ASSERT( r != r1 && ( r == r2 || r == r3 ) );
+ CPPUNIT_ASSERT( r != r1 );
+ CPPUNIT_ASSERT( r == r2 || r == r3 );
}
}