You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by sm...@apache.org on 2006/04/20 10:48:38 UTC

svn commit: r395536 - /incubator/harmony/enhanced/classlib/trunk/modules/beans/src/test/java/org/apache/harmony/tests/java/beans/IntrospectionExceptionTest.java

Author: smishura
Date: Thu Apr 20 01:48:36 2006
New Revision: 395536

URL: http://svn.apache.org/viewcvs?rev=395536&view=rev
Log:
Adding JIRA issue number to track regression

Modified:
    incubator/harmony/enhanced/classlib/trunk/modules/beans/src/test/java/org/apache/harmony/tests/java/beans/IntrospectionExceptionTest.java

Modified: incubator/harmony/enhanced/classlib/trunk/modules/beans/src/test/java/org/apache/harmony/tests/java/beans/IntrospectionExceptionTest.java
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/modules/beans/src/test/java/org/apache/harmony/tests/java/beans/IntrospectionExceptionTest.java?rev=395536&r1=395535&r2=395536&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/beans/src/test/java/org/apache/harmony/tests/java/beans/IntrospectionExceptionTest.java (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/beans/src/test/java/org/apache/harmony/tests/java/beans/IntrospectionExceptionTest.java Thu Apr 20 01:48:36 2006
@@ -22,6 +22,7 @@
 public class IntrospectionExceptionTest extends TestCase {
 
     public void testIntrospectionExceptionMessage() {
+        // Regression for HARMONY-235
         IntrospectionException e = new IntrospectionException("test message");
         assertEquals("test message", e.getMessage());
     }