You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by mr...@apache.org on 2005/05/10 11:44:54 UTC

svn commit: r169446 - /incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/api/PropertyReadMethodsTest.java

Author: mreutegg
Date: Tue May 10 02:44:53 2005
New Revision: 169446

URL: http://svn.apache.org/viewcvs?rev=169446&view=rev
Log:
Minor fix in read-only test case.

Modified:
    incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/api/PropertyReadMethodsTest.java

Modified: incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/api/PropertyReadMethodsTest.java
URL: http://svn.apache.org/viewcvs/incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/api/PropertyReadMethodsTest.java?rev=169446&r1=169445&r2=169446&view=diff
==============================================================================
--- incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/api/PropertyReadMethodsTest.java (original)
+++ incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/api/PropertyReadMethodsTest.java Tue May 10 02:44:53 2005
@@ -279,7 +279,7 @@
     }
 
     /**
-     * Tests if <code>Property.getNodes()</code> returns an array that is a copy
+     * Tests if <code>Property.getValues()</code> returns an array that is a copy
      * of the stored values, so changes to it are not reflected in internal storage.
      */
     public void testGetValueCopyStoredValues()
@@ -296,7 +296,6 @@
             throw new NotExecutableException("No testable propery found.");
         }
         values[0] = session.getValueFactory().createValue(values[0].getString() + "abc");
-        prop.getParent().save();
 
         // re-acquire the values and compare the zeroth values
         Value[] values2 = prop.getValues();