Kaydet (Commit) d70cc23f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:cppunitassertequals: comphelper

Change-Id: Ice8310b60d8bd2930bc00110f88f77565d33341b
üst 38f70cd7
......@@ -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 );
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment