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/02/15 16:39:45 UTC

svn commit: r153940 - incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/api/version/VersionLabelTest.java

Author: mreutegg
Date: Tue Feb 15 07:39:45 2005
New Revision: 153940

URL: http://svn.apache.org/viewcvs?view=rev&rev=153940
Log:
Last commit contained tabs instead of spaces. :-/

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

Modified: incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/api/version/VersionLabelTest.java
URL: http://svn.apache.org/viewcvs/incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/api/version/VersionLabelTest.java?view=diff&r1=153939&r2=153940
==============================================================================
--- incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/api/version/VersionLabelTest.java (original)
+++ incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/api/version/VersionLabelTest.java Tue Feb 15 07:39:45 2005
@@ -318,15 +318,15 @@
      * specified version is not in this version history.
      */
     public void testGetVersionLabelsForInvalidVersion() throws Exception {
-	// build a second versionable node below the testroot to get it's version.
-	Node versionableNode2 = createVersionableNode(testRootNode, nodeName2, versionableNodeType);
-	Version invalidV = versionableNode2.checkin();
+        // build a second versionable node below the testroot to get it's version.
+        Node versionableNode2 = createVersionableNode(testRootNode, nodeName2, versionableNodeType);
+        Version invalidV = versionableNode2.checkin();
 
-	try {
-	    vHistory.getVersionLabels(invalidV);
-	    fail("VersionHistory.getVersionLabels(Version) must throw a VersionException if the specified version is not in this version history");
-	} catch (VersionException ve) {
-	    // success
-	}
+        try {
+            vHistory.getVersionLabels(invalidV);
+            fail("VersionHistory.getVersionLabels(Version) must throw a VersionException if the specified version is not in this version history");
+        } catch (VersionException ve) {
+            // success
+        }
     }
 }