Index: modules/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/PropertyDescriptorTest.java =================================================================== --- modules/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/PropertyDescriptorTest.java (revision 453165) +++ modules/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/PropertyDescriptorTest.java (working copy) @@ -365,8 +365,8 @@ try { new PropertyDescriptor(propertyName, beanClass, "getXX", "set" + propertyName); - fail("Should throw IntrospectionException."); } catch (IntrospectionException e) { + fail("Shouldn't throw IntrospectionException."); } } @@ -416,8 +416,8 @@ try { new PropertyDescriptor(propertyName, beanClass, "get" + propertyName, "setXXX"); - fail("Should throw IntrospectionException."); } catch (IntrospectionException e) { + fail("Shouldn't throw IntrospectionException."); } }